0

How can have a custom css file for just opera browser ?

Something like IF IE.

I want to have a special one for opera.

user3271403
  • 143
  • 2
  • 3
  • 9
  • 1
    In this case I would always to see if you cannot adapt your CSS to make it work cross-browser. Can you give the CSS which does not work for Opera and you have to resort to CSS hacks and filters? Also what Opera version did you test for? – JohanVdR Mar 30 '14 at 15:45
  • you can use the @support querie using any prefixed CSS3 , give us a fiddle to play with and show you :) – G-Cyrillus Mar 30 '14 at 15:46

1 Answers1

2

You may use the -o-prefocushack test this in a opera browser to see the difference

<p>HELLO WORLD</p>

p { font-size: 20px;  }
-o-prefocus, p{
       font-size: 90px;
}
LOTUSMS
  • 10,317
  • 15
  • 71
  • 140