CSS hack to target Opera
by BinaryAcid
HTML
<p>I'm green in all browsers except Opera!</p>
CSS
p {
background: green;
}
x:-o-prefocus, p {
background: red;
}
by BinaryAcid
<p>I'm green in all browsers except Opera!</p>
p {
background: green;
}
x:-o-prefocus, p {
background: red;
}