当前位置:首页 > 行业动态 > 正文

html如何让表格只显示横线

在HTML中,可以使用CSS样式来控制表格的显示效果,如果你希望表格只显示横线,可以设置表格的边框样式为只有下边框(borderbottom)或者上边框(bordertop)。

以下是一个简单的例子:

<!DOCTYPE html>
<html>
<head>
<style>
table {
  bordercollapse: collapse; /* 合并边框 */
}
th, td {
  borderbottom: 1px solid black; /* 只有下边框 */
  padding: 15px; /* 单元格内边距 */
}
</style>
</head>
<body>
<h2>小标题</h2>
<table>
  <tr>
    <th>单元表格</th>
    <th>单元表格</th>
  </tr>
  <tr>
    <td>数据</td>
    <td>数据</td>
  </tr>
</table>
</body>
</html>

在这个例子中,我们使用了bordercollapse: collapse;来合并边框,然后设置了borderbottom: 1px solid black;来让每个单元格只有下边框,我们也设置了padding: 15px;来增加单元格内的空白区域。

0