Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Making a template cross browser Re: Making a template cross browser

#130214
JohnMotylJr
Participant

CSS3 sometimes requires what is called ‘Vendor Prefixes’, if you google that you can read a shload of documentation. Search this site alone and you can read some relevant stuff.

Basically, you add vendor prefixes such as

-webkit- // Safari Chrome
-moz- // Firefox
-ms- // Microsoft
-o- // Opera (not sure if they are switching to webkit or not)

You can also use the prefix free plugin in order to have the js do all the vendor prefixes for you. I would suggest researching and see what vendor prefixes are a must and include those rather then using an additional http request for a plugin.