Is there a way to make some CSS rules visible only for Opera (9.5 +)?
|
|
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. |
|||||||||
|
|
|
works great for Opera 10.63
|
|||||||||||||||
|
|
With pure CSS hack you might be unable to safely limit upper version you're hacking (e.g.
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.) |
|||||
|
|
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 |
|||||||||||||
|
|
Opera12
|
|||
|
|
|
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. |
|||
|
|
|
I wrote a jQuery $.support extension for detecting css property support. Additionally i wrote a little snippet to make really little vendor hacks:
This results for example in:
In your Stylesheets use it this way:
|
||||
|
|
|
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. |
|||||||||||
|
|
|||||||
|
|
Though this solution is rather a CSS hack and there is no guarantee it will be supported in future releases of Opera. You might also consider to use the following solution:
http://bookmarks-online.net/link/1308/css-including-style-for-opera-only |
|||
|
|
|
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. |
|||
|
|
|
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 |
|||||||
|
|
@certainlyakey works awesome for me: @media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) { #id {css rule} } I have a page with a button, and the text would not render correctly in Opera. The button appears many times (add to cart). After applying this fix it worked perfectly. |
|||
|
|
protected by Will♦ Aug 30 '10 at 11:44
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
