first-line-with-before-after-ref.html (432B)
1 <!DOCTYPE html> 2 <style> 3 #target::first-line { font-size: 150%; } 4 </style> 5 6 <div id="target"><span style='color:red'>red</span> <span style='color:green'>green</span> <span style='color:blue'>blue</span><br /> 7 <span style='color:red'>red</span> <span style='color:green'>green</span> <span style='color:blue'>blue</span> 8 </div> 9 10 <p>Both lines above (inside and outside <code>::first-line</code>) should have the same colors.</p>