LeaVerou / prefixfree

Break free from CSS prefix hell!

Home Page:http://projects.verou.me/prefixfree/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Does not work with radial-gradient

jczimm opened this issue · comments

As specified here, radial-gradient needs prefixes. As a background-image, -prefix-free does not add the necessary CSS prefixes.

Yes, it does. You just need to use the old & new syntaxes (unprefixed) alongside. E.g.

background: radial-gradient(top left, circle, red, black);
background: radial-gradient(circle at top left, red, black);

Oh, ok. Thanks

Note that in cases where the old & new syntax are the same, you don’t need two versions. For example:

background: radial-gradient(red, black);

or

background: radial-gradient(farthest-side, red, black);

etc.

In general, -prefix-free doesn't edit syntax, it only adds prefixes, otherwise it would be incredibly heavy. If you're using a feature a lot, and you need two syntaxes, it's very easy to write a plugin, like I did here: http://lea.verou.me/css3patterns (view source, it's under the inclusion of PF).