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

Материал из Web эксперт
Версия от 11:15, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"first-line" Example

   <source lang="html4strict">
   

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

This is the first line of a sample text. text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
This is the second line.

</body> </html>


     </source>