Thursday, May 17th

WTFWG

Tim Kadlec does a great job at breaking down the process which has led to the recent community disappointment in the WHATWG over the srcset attribute.

What message does it send when developers try to contribute their time, energy and effort to help solve a problem only to have it so casually dismissed?

Wednesday, May 16th

Saturday, May 5th

Thursday, May 3rd

WebKit is the most popular mobile browser in the world. I alluded to this a bit in my article yesterday, but here are several reasons I think the chart above is misleading:

The breakdown

The first, most obvious, reaction I have is: The iPod Touch and the iPhone have the exact same browser. So already, “Mobile Safari” is the most popular browser in the world — My friend Hans was even kind enough to demonstrate. And what about Android? Android’s default browser has been notorious for not being quite as smooth as the iPhone’s, but generally, the two are kept quite consistent. In fact, even BlackBerry, since BB6, has used WebKit, and even that is pretty on par with the others. They all even use the same browser prefix, -webkit-.

But then what about Opera? It sure seem fortunate that there’s only one version of Opera out there, except…

Read More

Wednesday, May 2nd

CSS layout gets smarter with calc()

Didn’t even know about this feature, but it’s brilliant. A quick idea of what you can do:

#bar {
  height: calc(10em + 3px); 
}

And regarding current support:

The calc() property for lengths is available now in Chrome 19 (Dev channel build) by use of the ‘-webkit-calc’ property, in Firefox since version 8 using the ‘-moz-calc’ property and in Internet Explorer since version 9 unprefixed.