tables and images

liunx

Guest
hi all.<br />
how do i fill a cell table with an image independently of the size's image?<br />
All ideas are welcome, hard or easy.<br />
thanks.<!--content-->that will happen automatically in many situations:<br />
<br />
<table><br />
<tr><br />
<td><img src=http://www.htmlforums.com/archive/index.php/frog.gif></td><br />
</tr><br />
</table><br />
<br />
you may have to define width and height of the cell if there is more than one cell:<br />
<br />
<table width="500"><br />
<tr><br />
<td width="200"><br />
there is text in this cell</td><br />
<td width="300"><img src=http://www.htmlforums.com/archive/index.php/frog.gif width="300"></td><br />
</tr><br />
</table><br />
<br />
without seeing your code it is not possible to give a totally accurate answer to fit your situation.<!--content-->
 
Back
Top