With these css lines you can create drop caps by placing the letter(s) between these tags.
css lines:
/* Drop caps */
.drop-cap {
float: left;
margin-right: 3px;
font-size: 48px;
font-style: normal;
line-height: 42px;
font-weight: normal;
font-family: "Warnock Pro", "Goudy Old Style", Palatino,"Book Antiqua", Cambria, Georgia, serif;
color: #666;
text-shadow: 2px 2px 3px #999;
}Tags:
<span class="drop-cap">letter</span>
No comments:
Post a Comment