100% Table height
Posted by Em on 5 February, 2008
No comments yet
This item was filled under [ HTML/CSS ]
To set your table’s height 100% in HTML, you can try out the following code:
<html> <body> <table height="100%" width="100%" border=2> <tr> <td><img src="spacer.gif" width=1 height=90></td> </tr> <tr> <td height="100%"> </td> </tr> <tr> <td><img src="spacer.gif" width=1 height=90></td> </tr> </table> </body> </html>
Popularity: 201 views