sábado, 24 de septiembre de 2011

Profundizando en el uso de las tablas

Hola a todos
Aquí incrusto un código para profundizar en el uso de las marcas, en concreto, <thead><tbody>,<tfoot> y <th>


<table border ="1">
    <thead>
    <tr>
    <th>Vendedor</th>
    <th>Ganancias</th>
    </tr>
    </thead>
    <tfoot>
    <tr>
    <td>Total</td>
    <td>340</td>
    </tr>
    </tfoot>
    <tbody>
    <tr>
     <td>Álvarez</td>
     <td>210</td>
    </tr>
    <tr>
     <td>Pérez</td>
     <td>130</td>
     </tr>
    </tbody>
    </table>
Saludos,
Alfredo

No hay comentarios:

Publicar un comentario