网页表格表头和内容字体大小分开设置
时间: 2024-03-25 09:38:44 浏览: 213
当你想要在网页表格中单独设置表头和内容的字体大小时,你可以使用 CSS 的 `:first-child` 伪类来选择表格中的第一行(即表头),然后为其设置不同的字体大小。下面是一个示例:
```html
<table>
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</tr>
</thead>
<tbody>
<tr>
<td>小明</td>
<td>18</td>
<td>男</td>
</tr>
<tr>
<td>小红</td>
<td>20</td>
<td>女</td>
</tr>
</tbody>
</table>
```
```css
table {
border-collapse: collapse;
}
th,
td {
border: 1px solid black;
padding: 5px;
}
th:first-child {
font-size: 24px;
}
td {
font-size: 16px;
}
```
在上面的示例中,我们为表格设置了统一的边框和内边距。然后,我们使用 `:first-child` 伪类来选择表头的第一行,并将其字体大小设置为 24 像素。最后,我们将表格的其余部分(即内容)的字体大小设置为 16 像素。这样就可以将表头和内容的字体大小分开设置了。
阅读全文