Create a HTML table width a percentage height and pixel accurate row heights - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Table Row

Description

Create a HTML table width a percentage height and pixel accurate row heights

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials