1379696-ref.html (237B)
1 <!DOCTYPE html> 2 <style> 3 .bar:before { 4 content:'SHOULD NOT BE ORANGE' 5 } 6 .foo:before { 7 content:'SHOULD BE ORANGE' 8 } 9 .foo:before { 10 background-color: orange; 11 } 12 </style> 13 <div class="bar"></div> 14 <div class="foo"></div>