Empty table header cell : table cell : Table Style HTML CSS TUTORIALS


HTML CSS TUTORIALS » Table Style » table cell »

 

Empty table header cell


 


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Scope 1</title>
</head>

<body>
<table border="1">
  <tr>
    <td rowspan="2"></td>
    <th colspan="2">Staff</th>
    <th rowspan="2">Managers</th>
  </tr>
  <tr>
    <th>Short</th>
    <th>Tall</th>
  </tr>
  <tr>
    <th>Bitbyte</th>
    <td>11</td>
    <td>9</td>
    <td>1</td>
  </tr>
  <tr>
    <th>UltraHyperMegaCorp</th>
    <td>2100</td>
    <td>900</td>
    <td>1000</td>
  </tr>
</table>

</body>
</html>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Table Style
» table cell