I am looking at the robot

Posts Tagged with html

CSS vertical align

September 22, 2009 - Use line-height more

Exclude IE

September 2, 2009 - Let's say you have no time to spend on fixing IE6 bugs, but still want to provide access to the content in unstyled form. You could use javascript, or probably a neater method is IE's conditional comments. The classic IE specific stylesheet call
<!--[if IE 6]>
<style type="text/css"> @import url(/assets/ie.css); </style>
<![endif]-->
more