HTML/CSS/CSS Attributes and Javascript Style Properties/first letter

Материал из Web эксперт
Перейти к: навигация, поиск

"first-letter" Example

   <source lang="html4strict">
   

<html> <head> <style> p:first-letter { font-size:150%; color:red; } </style> </head> <body>

This is a sample text.

</body> </html>


     </source>