html中table的border怎么加粗
时间: 2023-12-20 08:32:41 浏览: 152
Html_的table_边框设置
在HTML中,可以使用CSS来设置table的border加粗。以下是一种方法:
```html
<style>
table {
border-collapse: collapse;
}
th, td {
border: 1px solid #000;
font-weight: bold;
}
</style>
<table>
<tr>
<th>表头1</th>
<th>表头2</th>
</tr>
<tr>
<td>数据1</td>
<td>数据2</td>
</tr>
</table>
```
在上面的例子中,我们使用了`border-collapse: collapse;`来合并单元格边框,并使用`border: 1px solid #000;`来设置单元格的边框为1像素的实线。同时,使用`font-weight: bold;`来设置表头的标题加粗。
阅读全文