Documento sin título

Me Gusta

HTML

XXXXX

XXXXX

tbody thead tfoot


Veamos un ejemplo de una tabla HTML con un <tfoot>, y un elemento <thead> <tbody>:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Tablas</title>
</head>
<style>
thead {color:green;}
tbody {color:blue;}
tfoot {color:red;}
table, th, td {
    border: 1px solid black;
}
table {
            width:100%;
}
</style>
<body>

  </table>
<table>
  <thead>
    <tr>
      <th>Mes</th>
      <th>Ingreso</th>
    </tr>
  </thead>
  <tfoot>
    <tr>
      <td>Total 1</td>
      <td>Total 2</td>
    </tr>
  </tfoot>
  <tbody>
    <tr>
      <td>Enero</td>
      <td>2000</td>
    </tr>
    <tr>
      <td>Febrero</td>
      <td>5000</td>
    </tr>
  </tbody>
</table>
</body>
</html>



Vemos