'height' sets the height of an element in pixels : height « Tags « HTML / CSS






'height' sets the height of an element in pixels

    
<HTML>
<BODY>
<table width="450" height="200">
   <tr>
      <th colspan="3" height="80">Header</th>
   </tr>
   <tr>
      <td height="100">Cell 1</td>
   </tr>
</table>
</BODY>
</HTML>  
    
      
      








Related examples in the same category