HTML/CSS/CSS Attributes and Javascript Style Properties/first line — различия между версиями

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

Текущая версия на 08:15, 26 мая 2010

"first-line" Example

    
<html>
<head>
<style>
p:first-line { font-size:200%; color:red; }
</style>
</head>
<body>
<p>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 
<br>
This is the second line.
</p>
</body>
</html>