the first letter attribute applies to the first letter of any paragraph, is there a way i can set a style for the first letter of any word ina paragraph ?
Thanks,
Quentin
| SitePoint Sponsor |




the first letter attribute applies to the first letter of any paragraph, is there a way i can set a style for the first letter of any word ina paragraph ?
Thanks,
Quentin
You have to put something else like a <span> in your paragraph:
Hope this helps!Code:<head> <style type="text/css"> p { font-size: .9em; } span:first-letter { font-size: 1.5em; } </style> </head> <body> <p>This is a <span>special</span> paragraph.</p>
Bookmarks