Developer Tools in Internet Explorer 8 Beta 2

The Developer Tools in IE8 are getting more mature (and more Firebug alike): “Beta 1 introduced a JScript debugger that lets you easily debug Jscript within Internet Explorer. In Beta 2, we’ve made a few great improvements: it now supports Console.log, just-in-time debugging, and has better usability through changes like an improved file chooser.” … …

Conditional-CSS

Check this snippet out: [css]/* Conditional-CSS example */ a.button_active, a.button_unactive { display: inline-block; [if lte Gecko 1.8] display: -moz-inline-stack; [if lte Konq 3.1] float: left; height: 30px; [if IE 5.0] margin-top: -1px; text-decoration: none; outline: none; [if IE] text-decoration: expression(hideFocus=’true’); }[/css]Ever wanted to write CSS like that? Then seek no further! Conditional-CSS is a little …

jParallax

“jParallax turns a selected element into a ‘window’, or viewport, and all its children into absolutely positioned layers that can be seen through the viewport. These layers move in response to the mouse, and, depending on their dimensions (and options for layer initialisation), they move by different amounts, in a parallaxy kind of way.” – …