|
Posted by Stefan Mueller on 11/17/05 10:37
> I think that the answer would be no -- there is no reserved mechanism for
> doing so. I suggest constructing a transparent PNG file which is, let us
> say, 800 pixels wide and 1 pixel in height. Put it somewhere in the table
> and assuming you have no columns (cells), you should be fine. In fact,
> putting such an element /outside/ the table would do the trick too, re-
> gardless of the spread of table cells.
Yea, I've also thought about something like adding a blank image with a
fixed width (800px) but the problem is that even if I set its height to zero
it needs some vertical space:
<html>
<body>
<table width = "100%" border = "0">
<tr>
<td>
<img src = "size-1x1.gif" width = "800px" height = "0" border =
"0">
<hr>
</td>
</tr>
</table>
</body>
</html>
Stefan
PS: According to other posts min-width (<table width = "100%" style =
"min-width:800px" border = "0">) would be a nice solution but unfortunately
it's not working with the Internet Explorer.
Navigation:
[Reply to this message]
|