Forum Moderators: open
...
<tr>
<td valign="top" height="1"><img src="images/global/spacer.gif" width="100%" height="1" alt="spacer"></td>
</tr>
...
the issue is that when i load the page into my browser, the border in the resizing table does not initially load. if i do a refresh then it appears.
i assume this has something to do with the browser not knowing the size of the autostretching table at load time. is there a work around?
thanks.
Here's a better way:
<tr>
<td valign="top" class="border"></td>
</tr>
.border {
border: 1px solid #000000;
}
If you need it you could stick a 1x1px transparent image in there but don't give it an alt="spacer" it's worse than useless. Use alt="" which is much more useful adn saves a few bytes ;)
Nick
though there is that nagging 22% or so...
thanks, nick.