maybe someone can help me out.
THe problem is that when using a div object with a background and border, IE let the border overlap a piece of the background. If the border is 5px width, it overlaps 5px of the background. This isn't what i want.
I will demonstrate it by two images, the first (good one) is in firefox, the second one is in IE..
Click to view attachment Firefox
Click to view attachment IE
Does someone know what may cause this?
CSS code for the div is:
CODE
#content_frame{
margin:0;
padding:0;
background: #FFF url(./img/ts_header80_7x1.gif) repeat-y;
border: 0;
border-right: 3px solid #2f3e97;
border-left: 3px solid #2f3e97;
}
margin:0;
padding:0;
background: #FFF url(./img/ts_header80_7x1.gif) repeat-y;
border: 0;
border-right: 3px solid #2f3e97;
border-left: 3px solid #2f3e97;
}
