Have a look at this HTML.
It specifies a Table within a cell of a Parent table. The cell is spread across two rows of the Parent Table, and i simply want to fill it full height 100% with the child Table. But this HTML is not working, and I think it should, so i have got something wrong somewhere....
Can anyone see what i've done wrong ?
Any ideas ? Simon.
It specifies a Table within a cell of a Parent table. The cell is spread across two rows of the Parent Table, and i simply want to fill it full height 100% with the child Table. But this HTML is not working, and I think it should, so i have got something wrong somewhere....
Can anyone see what i've done wrong ?
HTML Code:
<td width="170" rowspan="2" align="center" valign="middle" background="bk.gif"> <div align="center"> <table width="170" height="100%" border="0" align="center" cellpadding="0" cellspacing="0" background="bk.gif"> <tr> <td width="12" height="12" align="right" valign="bottom"><img src="../../../Sites/Site1/images/box_tl.gif"></td> <td background="../../../Sites/Site1/images/box_t.gif"></td> <td width="12" height="12" align="left" valign="bottom"><img src="../../../Sites/Site1/images/box_tr.gif"></td> </tr> <tr> <td background="../../../Sites/Site1/images/box_l.gif"></td> <td background="../../../Sites/Site1/images/box_ctr.gif"> </td> <td background="../../../Sites/Site1/images/box_r.gif"></td> </tr> <tr> <td width="12" height="13" align="right" valign="top"><img src="../../../Sites/Site1/images/box_bl.gif"></td> <td background="../../../Sites/Site1/images/box_b.gif"></td> <td width="12" height="13" align="left" valign="top"><img src="../../../Sites/Site1/images/box_br.gif"></td> </tr> </table> </div></td>
Comment