Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Unused CSS Stages Flexbox and Multi-Column Layout Multi-Column Layout

Wisnu Mulya
Wisnu Mulya
15,938 Points

Why don't the browsers' makers just release the un-prefixed CSS features?

I'm just wondering of the reason why the browsers' makers not yet release the un-prefixed version of many CSS features like Flexbox or Multi-Column. If they're able to launch the browsers' versions that support the prefixed syntax (like -webkit-, -o-, -moz-), why don't just launch the browsers' versions that support the un-prefixed syntax already?

3 Answers

Chris Shaw
Chris Shaw
26,676 Points

Hi Wisnu,

The reason most CSS3 features are prefixed is because vendors are still testing and developing them, recently the Chrome dev team released an update to Chrome 36 which saw the transform properties remove the -webkit prefix after 35 versions so they don't go away easily until the vendor is satisfied that their implementation matches that of the W3C specification.

As for features such as Flexbox they won't be un-prefiexed for a long time to come as the specification still isn't complete so vendors are implementing it different ways which is causing inconsistencies in certain circumstances.

Kang-Kyu Lee
Kang-Kyu Lee
52,045 Points

Like the teacher said, we see here http://caniuse.com/ things are changing and slowly all the browsers getting up to date when a new thing comes out. (I don't know how old something like 'CSS transform' is by the way.) And also I guess the users do not usually move very fast. We don't know anybody wants to enter but didn't update their browsers, Like I heard we better build it more for all of the cases, all the browsers. Like we try an app for all the screen sizes here or else http://quirktools.com/screenfly/

vickiecomrie
vickiecomrie
3,248 Points

Thanks for giving out the link for Quirkstools--really nice free resource :)

Philip Cox
Philip Cox
14,818 Points

It takes a long time for the W3C to release a feature as a new specification.