Comment placer un tableau entier dans du HTML
Appliquer la formule suivante :
table>tr*4>td*4>{cellule $} |
puis touche TAB
Exercice n°1 pour intégrer du CSS dans des tableaux
Tableau avec une prédéfinition des colonnes :
<table> <col class= « col1 »> <col class= « col2 »> <tbody> <tr> <td>Cellule 1.1</td> <td>Cellule 1.2</td> </tr> <tr> <td>Cellule 2.1</td> <td>Cellule 2.2</td> </tr> </tbody> </table> |
Style CSS :
.col1 { background-color: #99ff99; width: 10em; } .col2 { |