Informations d'en-tête du tableau
Maison > Article > interface Web > Comment ajouter un en-tête de tableau en HTML
Dans un tableau HTML, vous pouvez ajouter un en-tête en utilisant une ou plusieurs balises "th" dans la balise table. La balise th est utilisée pour définir la cellule d'en-tête dans le tableau HTML ; tr>
Informations d'en-tête Informations d'en-tête ...".
L'environnement d'exploitation de ce tutoriel : système Windows 7, version HTML5, ordinateur Dell G3.
html ajoute un en-tête
<table border="1"> <tr> <th>月份</th> <th>存款</th> </tr> <tr> <td>一月</td> <td>3000 元</td> </tr> <tr> <td>二月</td> <td>2000 元</td> </tr> </table>
Rendu :
Description :
属性 | 值 | 描述 |
---|---|---|
abbr | text | HTML5 不支持。 规定表头单元格中内容的缩写版本。 |
align | left right center justify char |
HTML5 不支持。 规定表头单元格内容的水平对齐方式。 |
axis | category_name | HTML5 不支持。 对表头单元格进行分类。 |
bgcolor | rgb(x,x,x) #xxxxxx colorname |
HTML5 不支持。HTML 4.01 已废弃。 规定表头单元格的背景颜色。 |
char | character | HTML5 不支持。 规定根据哪个字符来进行内容的对齐。 |
charoff | number | HTML5 不支持。 规定对齐字符的偏移量。 |
colspan | number | 规定表头单元格可横跨的列数。 |
headers | header_id | 规定与表头单元格相关联的一个或多个表头单元格。 |
height | pixels % |
HTML5 不支持。HTML 4.01 已废弃。 规定表头单元格的高度。 |
nowrap | nowrap | HTML5 不支持。HTML 4.01 已废弃。 规定表头单元格中的内容是否折行。 |
rowspan | number | 规定表头单元格可横跨的行数。 |
scope | col colgroup row rowgroup |
规定表头单元格是否是行、列、行组或列组的头部。 |
valign | top middle bottom baseline |
HTML5 不支持。 规定表头单元格内容的垂直排列方式。 |
width | pixels % |
HTML5 不支持。HTML 4.01 已废弃。 规定表头单元格的宽度。 |
Tutoriel recommandé : "Tutoriel vidéo HTML"
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!