欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

CSS的表格边框使用什么属性设置

程序员文章站 2022-04-16 22:33:23
...
CSS的表格边框使用什么属性设置

表格边框

如需在 CSS 中设置表格边框,请使用 border 属性。 ( 推荐学习:CSS入门教程 )

下面的例子为 table、th 以及 td 设置了蓝色边框:

<html>
<head>
<style type="text/css">
table,th,td
{
border:1px solid blue;
}
</style>
</head>

<body>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Bill</td>
<td>Gates</td>
</tr>
<tr>
<td>Steven</td>
<td>Jobs</td>
</tr>
</table>
</body>
</html>

请注意,上例中的表格具有双线条边框。这是由于 table、th 以及 td 元素都有独立的边框。

如果需要把表格显示为单线条边框,请使用 border-collapse 属性。

以上就是CSS的表格边框使用什么属性设置的详细内容,更多请关注其它相关文章!

相关标签: CSS