14 lines
237 B
HTML
14 lines
237 B
HTML
<!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>
|