first-line-with-inline-block-before.html (425B)
1 <!DOCTYPE html> 2 <title>inline block ::before styles should apply inside ::first-line</title> 3 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#generated-content"> 4 <link rel="match" href="first-line-with-inline-block-before-ref.html"> 5 <style> 6 #target::first-line { 7 color: red; 8 } 9 #target::before { 10 content: "green"; 11 color: green; 12 display: inline-block; 13 } 14 </style> 15 <div id="target">red</div>