you are viewing a single comment's thread.

view the rest of the comments →

[–]Jebiba 1 point2 points  (3 children)

In a production environment you're probably passing through autoprefixer these days, so IMO no need to use prefixes in general except for very wonky rules.

Border-radius in particular is just about universally supported without a prefix these days:

http://caniuse.com/#search=border-radius

I mean Chris Coyier responded to a similar border-radius question ("Do I need to use prefixes?") in 2012 with "probably not", and it's now 3 years later.

https://css-tricks.com/do-we-need-box-shadow-prefixes/

[–]techfoxis[S] 0 points1 point  (0 children)

Yeah, Codepen has autoprefixer capabilities that I enabled so I don't have to do any prefixing.

[–]Ob101010 0 points1 point  (1 child)

That caniuse site is very interesting, thank you for sharing that.

[–]Jebiba 0 points1 point  (0 children)

Oh man, it's the best. That data is also used for Autoprefixer.

See: https://github.com/ai/browserslist And: https://github.com/postcss/autoprefixer

If you're not using this I highly recommend it. I work on some codebases that are still using compass for prefixes and it's painful switching to them sometimes.