减少html tr标签之间的默认间距

如何减少<tr>表格标签之间的间距? 我想走到0以下的单元格间距。换句话说,我希望行几乎相互接触。

我有:

<table class="table">
  <tr class="row"><td>One</td></tr>
  <tr><td>Two</td></tr>
</table>

我尝试了一个类似于以下的CSS:

.table{ font-size: 12px; padding: 0;  margin:0;    }
.row{    height: 30px    }  / *tried playing with this to no avail */

没有成功 - 表格行不会比默认值更近。


.table{
    border-collapse:collapse;
} 

.table tr td{
     height: 30px;
     padding: 0;
}

不知道standarts,但我注意到,只有我用于TD的规则工作,而不是TR!

链接地址: http://www.djcxy.com/p/94719.html

上一篇: Reducing the default spacing between html tr tags

下一篇: Simple two column html layout without using tables