During styling in css what does wiki means | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

During styling in css what does wiki means

CSS styling

3rd May 2018, 3:37 AM
sunday emmanuel
sunday emmanuel - avatar
3 Answers
+ 3
Do you mean webkit by any chance?
3rd May 2018, 3:42 AM
cyk
cyk - avatar
+ 2
thanks
5th May 2018, 2:50 AM
sunday emmanuel
sunday emmanuel - avatar
+ 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.
3rd May 2018, 3:54 AM
Adam
Adam - avatar