在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)