Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vendor Prefixes in Chrome and Opera

Since Chrome and Opera are switching to "Blink," are they changing the CSS vendor prefixes they use? Right now, Opera uses -o- and Chrome uses -webkit-. In the future, should I include something like -blink-, or will they remain unchanged?

like image 375
JacobTheDev Avatar asked Dec 26 '22 03:12

JacobTheDev


1 Answers

Blink will not use vendor prefixes. Instead you'll need to enable experimental features in the browser configuration.

See: http://www.chromium.org/blink#vendor-prefixes http://www.quirksmode.org/blog/archives/2013/04/blink.html

Mozilla (Firefox) are doing something similar too: http://lists.w3.org/Archives/Public/public-webapps/2012OctDec/0731.html

like image 186
Ric Avatar answered Jan 14 '23 10:01

Ric