Difference between revisions of "HTML:Tabelle"
From Aino Wiki
(→Tabella HTML) |
(No difference)
|
Latest revision as of 12:37, 4 June 2016
Tabella HTML
Tutorial HTML con stile Es. semplice 1.
<table style="width: 100%;"> <thead> <tr> <th> Titolo 1 </th> <th> Titolo 2 </th> </tr> </thead> <tbody> <tr> <td>Cella 1, 1</td> <td>Cella 1, 2</td> </tr> <tr> <td>Cella 2, 1</td> <td>Cella 2, 2</td> </tr> </tbody> </table>
Es. semplice 2. Con header e footer
<table id="..."> <!-- Table header --> <thead> <tr> <th scope="col" id="...">...</th> ... </tr> </thead> <!-- Table footer --> <tfoot> <tr> <td>...</td> </tr> </tfoot> <!-- Table body --> <tbody> <tr> <td>...</td> ... </tr> ... </tbody> </table>
Mappa e Link
Parole chiave: