I have a 25px by 25px gif, and repeating both xy in a 500x500. I overlay some images on top of it at exactly 25px. This works fine in Firefox, but Chrome seems to shrink the background gif xy by 1 pixel every 4 images! So, my overlays don't line up in Chrome, but do in Firefox. I see a Chrome table bug, but this isn't a table.
.grid2 {
float:left;
clear: both;
height:226px !important;
width:402px !important;
background:#000;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
/*background-position: left;*/
background-image:url('../bitmaps/gifs/hole.gif');
/*background-size:25px 25px;*/
background-repeat: repeat;
}
I tried without clear, important, etc. Any Ideas?