Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张需要打印的表格。我想在标题上方和下方以及表格底部有一条 1px 实线。
我已经尝试了所有常用的技巧:
border-collapse:collapse; border-spacing:0;
等等
但我得到的是:
jsFiddle
我究竟做错了什么?
cellspacing="0" cellpadding="0"在表格标签中简单使用:)
cellspacing="0" cellpadding="0"
就这样<table cellspacing="0" cellpadding="0">
<table cellspacing="0" cellpadding="0">
将这些添加到table元素应该可以修复它:
table { border-collapse: collapse; border-spacing: 0px; }