Thursday, September 27th

Wednesday, August 8th

Wednesday, August 1st

Thursday, July 5th

Google I/O 2012 - The Web Can Do That!? Great presention by Eric Bidelman, covering some of my favorite new features in CSS3, some super-interesting bits of HTML5 like <datalist> and the download attribute, and some amazing A/V demos at the end (getUserMedia FTW). A fantastic preview of the next stage of web applications.

(Source: youtube.com)

Wednesday, May 16th

Saturday, May 5th

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.