I am looking at the robot

Posts Tagged with css

Setting font size and spacing in google maps infowindow

March 10, 2010 - To prevent scrollbars, set
var info = new google.maps.InfoWindow({
  maxWidth: 285,
  content: '<div class="info"><p>etc..</p></div>'
}};
more

Too big for chrome

February 2, 2010 - Chrome is perfectly happy for you to text-indent: -9999em more

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

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