Answers for "css transition cross browser"

CSS
0

css transition cross browser

#amazing-element {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out;
}
Posted by: Guest on March-01-2021

Browse Popular Code Answers by Language