在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;
来增加单元格内的空白区域。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/400808.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复