The Opera Browser Prefix: -o-
The same as the spec.
the -o- prefix used by opera uses exactly the same syntax as the unprefixed commands and it's not clear when you would ever actually need to use the Opera specific prefix.
However, Opera recognizes: linear-gradient -o-linear-gradient -webkit-linear-gradient
but not: -moz-linear-gradient -moz-repeating-linear-gradient
Opera recognizes only unprefixed radial commands: Be aware though, if you are using Opera and you have conflicting commands, it will use the most recent one it successfully parsed, not the most correctly named one. A good example is to find some piece of code that has all the browser prefixes, then change only the Opera one and watch how Opera renders it. Unless it's the last one parsed, it'll pick up some other value. That is:
radial-gradient (circle...
All of the Opera prefixed and unprefixed commands have identical syntax and semantics for both commands and argumentsand the gradient commands are exactly identical to the unprefixed ones; the Opera browser prefix is the only one that is identical to the unprefixed commands implemented per the W3C spec.
|