Pavangowda S U
Pavangowda S U

Reputation: 76

How browsers keep sync with the W3C standards?

I always follow https://www.w3.org/ to track the updates on CSS or HTML. Today morning when I was checking, W3C published the new draft on CSS-GRID.

So I want to know how browsers keep track of these new changes W3C made and how frequent they update their browsers and release it to affect the new changes?

Upvotes: 0

Views: 53

Answers (1)

Alohci
Alohci

Reputation: 83125

They don't keep up. They write the specs for the W3C, sometimes creating an implementation first and using what they learn during that process to help them write the spec, sometimes writing a spec before implementation. But mostly it's an iterative process with partial implementation informing spec changes and spec changes informing the next round of implementations. Sometimes specs never get implemented, and occasionally implementations get withdrawn. Those specs then quietly die.

Grid layouts, in particular, were first implemented by IE, and then submitted by Microsoft for standardisation. The latest version of that standard differs substantially from that first implemented in IE.

Upvotes: 1

Related Questions