Creating a drop cap with span elements and CSS : drop cap : CSS Controls HTML CSS TUTORIALS


HTML CSS TUTORIALS » CSS Controls » drop cap »

 

Creating a drop cap with span elements and CSS


 


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>Creating a drop cap with span elements and CSS</title>
<style type="text/css" media="screen">
h1+p {
    font-weight: bold;
    color: #222222;
}
.dropCap span {
    font-size: 4.8em;
    line-height: 1em;
}    
    
.dropCap {
    float: left;
    height: 4.7em;
    margin-top: -0.2em;
    margin-left: -0.4em;
    margin-right: 0.5em;
}
    
</style>
</head>
<body>
  <div id="wrapper">
    <h1>Article heading</h1>
    <p><span class="dropCap"><span>T</span></span>is a test. this is a test. 
    this is a test. 
    this is a test. 
    this is a test.  Sed aliquet elementum erat. Integer diam mi, venenatis non, cursus a, hendrerit at, mi. Morbi risus mi, tincidunt ornare, tempus ut, eleifend nec, risus.</p>
  </div>
</body>
</html>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo CSS Controls
» drop cap