我有几个包含文本的表格标题单元格,我很好。但是,标题具有背景颜色,并且在单行和其他 2 行(换行)之间具有不同的高度看起来很尴尬。
我可以将标题设置为某个高度,以便包含单行文本的单元格与具有 2 行的单元格的高度相同吗?我不想使用 no-wrap 因为我想保持表格的当前宽度。
当我改变 line-height 时,包裹单元格的间距也会增加,所以基本上标题单元格的高度仍然不同。
<table class = "large_headers">
<tr>
<th>Test1</th>
<th>Test2</th>
</tr>
<tr>
<td>abc</td>
<td>def</td>
</tr>
</table>
.large_headers th{
display: table-cell;
}