On Sun, 1 Aug 2004 19:26:31 +0200, in macromedia.dreamweaver "jules"
<jgoulot (AT) yahoo (DOT) com> wrote:
Quote:
| In IE6, it's possible to get jpgs to automaticaly resize themselves
| according to the size of the window in wich they're being displayed. Is it
| possible to achive that same autoresizability of a jpgs that's inside a
| table or even simply centered in a plain html document?
| |
Use percentages for height and width.
<TABLE WIDTH="100%" HEIGHT="10%">
<TR ALIGN="CENTER" VALIGN="MIDDLE">
<TD WIDTH="2%">
<IMG SRC="images/1.gif" WIDTH="100%" HEIGHT="100%">
</TD>
</TR>
</TABLE>