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