I'm having a problem with making IE stretch the proper table cells. Of course, Firefox behaves as I'd expect and IE craps on all my hopes and dreams
Obviously, I want the middle cell to stretch, and the edge cells to not stretch.
Relevant XHTML code:
Code: Select all
<td class = "half-left" style = "width:16px;">
</td>
<td class = "half-stretch">
Files
</td>
<td class = "half-right" style = "width:16px;">
</td>
</tr>Code: Select all
.half-left{
height:30px;
width:16px;
background-image:url(/images/half-left.gif);
background-repeat:no-repeat;
}
.half-stretch{
height:30px;
background-image:url(/images/half-stretch.gif);
background-repeat:repeat-x;
font-weight:bold;
font-size:10pt;
}
.half-right{
height:30px;
width:16px;
background-image:url(/images/half-right.gif);
background-repeat:no-repeat;
}Thanks!