Hello!
Is there a way to make some CSS rules visible only for Opera (9.5 +)?
Thank you!
|
|
|||||
|
|
|
Do not think "detect Opera". Think "detect browsers that do not support feature x". For example, this JavaScript statement lets you detect browsers that support moz-border-radius:
and this is the equivalent for WebKit-based browsers (Safari, Chrome):
Putting that together, we can come up with something like
CSS:
Caveat: untested :-p |
||
|
|
|
|
There's no pure-CSS hack that I know of. If you have to hack, you'll need to use JavaScript:
and in CSS:
But please double-check CSS spec first to ensure that what you're hacking is actually a bug. Opera 10 has full CSS2.1 support and passes all Acid tests, so if something doesn't appear right, it might be because of other reasons (error somewhere else in the code, detail or corner case you shouldn't rely on, etc.) |
||
|
|
|
|
Not in any way I would recommend. Check for Javascript or PHP browser sniffers on Google. Some may be so outdated that you need to add detection for Opera 9.5+, however. Browser sniffers (for styling) are generally bad practice. Also, note that Opera 9.5+ gives users the option of masking their browser as IE, rendering any kind of sniffing useless. Edit: As you can see in another answer, there is |
||||||
|
|
|
The only way I can think of is to check the user agent and only reference the style sheet when it's an opera browser. Since the user agent can be messed with this might not be 100% reliable. |
||
|
|
|
|
You can use javascript to write out a
For Opera 7 you can use this:
However, it's generally bad practice to do styling based on browser-sniffing. |
||||||||||
|
|
|
This hack works for the latest Opera:
It doesn't touch any other browser as far as i tested, but this may be actual for several months, with web technologies boom etc. |
||
|
|
|
|
You could use Modernizr ( http://www.modernizr.com/ ) to detect CSS features you want to use – it applies class names to the body element so you can then construct your CSS accordingly. |
||
|
|
|
|
|
||
|
|