It’s funny because its rude…

Posted by Mikey McCorry | Posted in Elsewhere | Posted on 18-07-2008

Tags: ,

0

Not only does this article have one of the greatest main-stream-media headlines I’ve ever seen, but the actual article (and accompanying YouTube video) is just as funny.

Michael Bay’s “The Dark Knight”

Posted by Mikey McCorry | Posted in Elsewhere | Posted on 07-07-2008

0

Michael Bay’s proposed script for The Dark Knight is one of the funniest things I’ve read in a while.

CSS variables are go!

Posted by Mikey McCorry | Posted in Uncategorized | Posted on 02-07-2008

1

In a post I wrote almost a year ago (and in the ensuing comments), I pondered the possibility of someday being able to define variables natively in a CSS document without the use of server-side scripting.

Well it seems that in their most recent nightly build, WebKit has added support for this.

@variables {
    CorporateLogoBGColor: #fe8d12;
}
div.logoContainer {
    background-color: var(CorporateLogoBGColor);
}

I’m not sure if this is based on any particular official CSS3 recommendation or if its something that WebKit has just grabbed and ran with in the hope of it going mainstream, but its certainly a step in the right direction.