So today I learned that basically for certain browsers to be able to support certain features you add to your site you need to add -moz- and -webkit- to your code. These are vendor-prefixed properties used in the different rendering engines
- moz = mozilla firefox based browsers
- webkit = chrome, safari based browsers
- ms = internet explorer based browsers
- o = opera based browsers
For example setting up gradients as background images clipped on top of text you need the following
This won’t be supported on all browsers out of the gate so you need a fallback and so we add the -moz- and the -webit- to it.
Will update when I learn more 🤓…..
Last updated: Dec 13, 2022