This may have something to do with it, but not sure :
Code:
<td background="left.gif"><img src="blank.gif" width="1" height="1" border="0" alt="..."></td>
Wht are you using tables and images in the html for this ? How about html:
Code:
<div class="box">
<b class="tl"></b><b class="tr"></b><b class="bl"></b><b class="br"></b>
<p>Why is there not a single pixel gap in the left border? Why is there not a single pixel gap in the left border? Why is there not a single pixel gap in the left border? Why is there not a single pixel gap in the left border?</p>
</div>
and css:
Code:
.box {
width: 230px;
padding: 10px;
border: 1px solid #3E2318;
position: relative;
}
.box b {
position: absolute;
width: 10px;
height: 10px;
font-size: 1px;
}
.box .tl {
background: url(topleft.gif);
top: -1px;
left: -1px;
}
.box .tr {
background: url(topright.gif);
top: -1px;
right: -1px;
}
.box .bl {
background: url(bottomleft.gif);
bottom: -1px;
left: -1px;
}
.box .br {
background: url(bottomright.gif);
bottom: -1px;
right: -1px;
}
Also has the advantage of only corner images needed.
Bookmarks