first-line-with-out-of-flow.html (650B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo"> 3 <link rel="match" href="first-line-with-out-of-flow-ref.html"> 4 <title>CSS Test: ::first-line with out of flow</title> 5 <style> 6 #block::first-line { color: green; } 7 </style> 8 <div id="block"> 9 <div style="position: absolute"><br></div> 10 <div style="float: right"><br></div> 11 <div> 12 <div style="position: absolute"><br></div> 13 <div style="float: right"><br></div> 14 <div style="color: blue"> 15 <div> 16 <span><span>This text should be green.</span></span><br> 17 This text should be blue. 18 </div> 19 </div> 20 </div> 21 </div>