HTML CSS examples for CSS Widget:Table Row
Create a HTML table width a percentage height and pixel accurate row heights
<html> <head></head> <body> <table height="100%" border="1"> <tbody> <tr height="100px"> <td>Lore</td> </tr> <!--from www .j a v a2 s . co m--> <tr> <td>Lorem</td> </tr> </tbody> </table> </body> </html>