first-line-000-ref.html (361B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 p { 6 color: fuchsia; 7 } 8 span { 9 color: silver; 10 } 11 </style> 12 <body> 13 <p>The first line of this paragraph should be fuchsia (same as in the next block).<br /><span>Filler text.</span></p> 14 <p>Lorem ipsum dolor.<br /><span>Filler text.</span></p> 15 </body>