- 2
During styling in css what does wiki means
CSS styling
3 Réponses
+ 3
Do you mean webkit by any chance?
+ 2
thanks
+ 1
Gotta be webkit. Autocorrect probably.
Webkit is a browser specific style. It means it isn't fully supported in all browsers yet or differently in several. There is -webkit for chrome and safari
-moz for firefox
-o for opera
-ms for Microsoft browsers
So back before transition was widely supported you had to do:
transition: styles;
-webkit-transition: styles;
-moz-transition: styles;
-o-transition: styles;
etc
to cover all of the browsers.