JFRobishow
Technical User
Ok,
Here's my problem, I have my page divided top/bottom. The top contain the logo, etc.
The bottom contain a table that contain the image of a bar going accross (left->right). The particular image's heigth is 5px, I try to put it in a td that have a with of 5px. That work just fine under Opera, Mozilla, etc but not IE!! IE seems to just look over the height="5" of that td.
This is my code:
It doesn't produce the expected result in IE, I would want the second row to be touching the first one (if you prefer I would want to have topbar's cell exactly 5px high so that the second row would fit right under that w/o any space.) IE is obviously skipping the height in:
replacing it by some sort of value that I don't know of...
Any help is appreciated.
Thanks
Here's my problem, I have my page divided top/bottom. The top contain the logo, etc.
The bottom contain a table that contain the image of a bar going accross (left->right). The particular image's heigth is 5px, I try to put it in a td that have a with of 5px. That work just fine under Opera, Mozilla, etc but not IE!! IE seems to just look over the height="5" of that td.
This is my code:
Code:
<table width="620" cellpadding="0" cellspacing="0" border="1">
<tr valign="bottom">
<td colspan="3" height="5">
<img src="images/topBar.gif" width="620" height="5">
</td>
</tr>
<tr valign="top">
<td width="76">
<img src="images/leftNav.gif" width="72" height="894" border="0">
</td>
<td width="298">
2
</td>
<td width="246">
3
</td>
</tr>
</table>
It doesn't produce the expected result in IE, I would want the second row to be touching the first one (if you prefer I would want to have topbar's cell exactly 5px high so that the second row would fit right under that w/o any space.) IE is obviously skipping the height in:
Code:
<td colspan="3" height="5">
Any help is appreciated.
Thanks