[solved] IE not stretching properly
Posted: Wed Jan 18, 2006 10:00 am
Hi all,
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
. You can view the problem page here: http://media.augustana.ca/Directory1/Directory2/ .
Obviously, I want the middle cell to stretch, and the edge cells to not stretch.
Relevant XHTML code:
Relevant CSS declarations:
I'm sure it's something simple - any insight will be appreciated.
Thanks!
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!