Our Affiliates
Using CSS we can change the appearance of the first letter in a div. Insert the following code into your page's Head tags.
<style type="text/css">
.intro: first-letter {
font-size:14;
}
</style>
This will make the first letter in the class, "intro" size 14. You can add other CSS values as well as font-size (color, font-decoration, etc).
<style type="text/css">
.intro: first-letter {
font-size:14;
}
</style>
This will make the first letter in the class, "intro" size 14. You can add other CSS values as well as font-size (color, font-decoration, etc).



