I wonder why IE does not seem to recognize the specified width?
I basically have this code:
<table>
<tr>
<td valign="top" align="right" class="left_frame"></td>
</tr>
</table>
CSS
.left_frame {
background: url(images/side.gif) repeat-y;
width: 17px;
}
Even if I add width = "17" inside the tags <td></td>, the width still doesn't change. This is quite complicated because the problem seems very simple.
source
share