Answers for "transition prefixes css"

CSS
2

transition prefixes css

.example {
    -webkit-transition: background-color 500ms ease-out 1s;
    -moz-transition: background-color 500ms ease-out 1s;
    -o-transition: background-color 500ms ease-out 1s;
    transition: background-color 500ms ease-out 1s;
}

/* IE10 (the first stable version of IE to support transition)
does not require the -ms- prefix. */
Posted by: Guest on June-10-2020
2

css browser prefixes

Android: -webkit-
Chrome: -webkit-
Firefox: -moz-
Internet Explorer: -ms-
iOS: -webkit-
Opera: -o-
Safari: -webkit-
Posted by: Guest on February-24-2020

Browse Popular Code Answers by Language