I am looking at the robot

Posts Tagged with ie

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

IE ignores border in background positioning calculations

June 10, 2009 - The title says it all. If you have
#wrapper {
	border-top: 7px solid #870038;
	background: top left url(../img/bg-x.png) repeat-x #fff;
}
more