TIL how many vendor prefixes are left as of 2021
POSTED ON:
TAGS: css
The major browsers use the following prefixes:
-webkit-
(Chrome, Safari, newer versions of Opera, almost all iOS browsers including Firefox for iOS; basically, any WebKit based browser)
-moz-
(Firefox)
-o-
(old pre-WebKit versions of Opera)
-ms-
(Internet Explorer and Microsoft Edge)
Via https://developer.mozilla.org/en-US/docs/Glossary/Vendor_Prefix
We don't actually need to memorize that stuff anymore, as the build process should handle that for us now, with tools like Autoprefixer.
The number of prefixes is slowly dying.
Per CSS Tricks, we have about 28 left!
Related TILs
Tagged: css