8.5. Aplicando estilos

8.5. Aplicando estilos

by didacticode

HTML

<table>
  <colgroup>
    <col span="2" style="background-color:green">
    <col style="background-color:blue">
  </colgroup>
  <tr>
    <th>Nombre</th>
    <th>Apellido</th>
    <th>Nacimiento</th>
  </tr>
  <tr>
    <td>Ada</td>
    <td>Lovelace</td>
    <td>1815</td>
  </tr>
  <tr>
    <td>Charles</td>
    <td>Babbage</td>
    <td>1791</td>
  </tr>
</table>