Medlem
|
|
Reg.datum: Jun 2004
Inlägg: 140
|
|
Medlem
Reg.datum: Jun 2004
Inlägg: 140
|
enligt standard så så är det inte giltligt att sätta height på table...
Fel:
<table height="100%">
<tr>
<td>
</td>
</tr>
</table>
Gör såhär:
<table>
<tr>
<td height="100%">
</td>
</tr>
</table>
|