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