block-in-inline-first-line-001-ref.html (369B)
1 <!DOCTYPE html> 2 <style> 3 div::first-line { 4 background: orange; 5 } 6 </style> 7 <body> 8 <div> 9 First line.<br> 10 Second line. 11 </div> 12 <div> 13 First line in 1st block box.<br> 14 Second line. 15 </div> 16 <div> 17 First line in 2nd block box.<br> 18 Second line.<br> 19 First line after block-in-inline is not ::first-line.<br> 20 Second line. 21 </div> 22 </body>