<!DOCTYPE html>
<style>
.bar:before {
content:'SHOULD NOT BE ORANGE'
}
.foo:before {
content:'SHOULD BE ORANGE'
background-color: orange;
</style>
<div class="bar"></div>
<div class="foo"></div>