groups

name language licence
HTML5 : Structure par defaut + commentaires Other Other
HTML : plus d'infos sur la balise adress HTML Other
PHP : convertir des retours à la ligne en entité html
avec la fonction nl2br()
PHP Other
HTML : Formulaire de contact + verification inline avec validatious 2.0 HTML Other
JS/HTML/GOOGLE EARTH API : examples plus commentaires Other Other
HTML/CSS : une bonne methode pour center verticalement un block HTML Other
HTML : thead, tfoot, tbody HTML Other
HTML/CSS : centrer verticalement un texte dans un div HTML Other

< 1 2 3 4 5 6 >



language: HTML
licence: Other

HTML : thead, tfoot, tbody

options: view full snippetsend to code collector
Definition and Usage

The <thead> tag is used to group the header content in an HTML table.

The thead element should be used in conjunction with the tbody and tfoot elements.

The tbody element is used to group the body content in an HTML table and the tfoot element is used to group the footer content in an HTML table.

Note: <tfoot> must appear before <tbody> within a table, so that a browser can render the foot before receiving all the rows of data.

Notice that these elements will not affect the layout of the table by default. However, you can use CSS to let these elements affect the table's layout.
	
(Continues...)