block-in-inline-first-line-001.html (742B)
1 <!DOCTYPE html> 2 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" /> 3 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo" /> 4 <link rel="match" href="block-in-inline-first-line-001-ref.html"/> 5 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org" /> 6 <style> 7 div::first-line { 8 background: orange; 9 } 10 </style> 11 <body> 12 <div> 13 <span> 14 First line.<br> 15 Second line. 16 <div> 17 First line in 1st block box.<br> 18 Second line. 19 </div> 20 <div> 21 First line in 2nd block box.<br> 22 Second line. 23 </div> 24 First line after block-in-inline is not ::first-line.<br> 25 Second line. 26 </span> 27 </div> 28 </body>