Opera supports certain -webkit- prefixes and will use these when applying styles as described here.
Two different types of prefixes are supported, details regarding how they are supported are below.
-webkit-linear-gradient-webkit-linear-gradient and -o-linear-gradient will behave identically and the following rules will be obeyed when evaluating styles.
-webkit-linear-gradient and -o-linear-gradient are found. Whichever comes last will override the other.-webkit- prefixed properties are supported through a CSS property aliasing mechanism, and also will obey the following rules.
-webkit- prefixed property and an -o- prefixed property are encountered, they are treated as instances of the same property, so the latest one (according to usual cascade rules) wins.CSSStyleDeclaration object, and they map to the same value.
removeProperty, setProperty, getPropertyValue, and getPropertyPriority all will work with aliases as described above.webkitTransitionEnd is aliased to oTransitionEnd enabling the use of addEventListener("webkitTransitionEnd"...)
addEventListener("webkitTransitionEnd"...) and addEventListener("oTransitionEnd"...) have been used to register a listener, only the oTransitionEvent will be fired.transition-property), the name that was used is preserved.-o- |
-webkit- |
|---|---|
box-shadow | -webkit-box-shadow |
-o-transform | -webkit-transform |
-o-transform-origin | -webkit-transform-origin |
border-radius | -webkit-border-radius |
border-top-left-radius | -webkit-border-top-left-radius |
border-top-right-radius | -webkit-border-top-right-radius |
border-bottom-left-radius | -webkit-border-bottom-left-radius |
border-bottom-right-radius | -webkit-border-bottom-right-radius |
-o-transition | -webkit-transition |
-o-transition-delay | -webkit-transition-delay |
-o-transition-duration | -webkit-transition-duration |
-o-transition-property | -webkit-transition-property |
-o-transition-timing-function | -webkit-transition-timing-function |
Need help? Hit F1 anytime while using Opera to access our online help files, or go here.