我只知道 CSS 的基础知识,所以不知道如何去做。我有一个主要包含单行数据的表格,但第一行中的最后一个单元格(称为“其他”)有多行
有没有一种方法可以使表格中除该单元格之外的每个单元格的高度变小?现在,由于多行列太大,导致其余单元格在数据上方和下方有额外的空白(请参见第一个屏幕截图)。当我更改 的 line-height
时,它使整个表格看起来不错,除了一个具有多行的单元格(参见第二个屏幕截图)td
没有line-height
:
添加了 line-height
:
html(我省略了一些td以使其看起来更干净):
<table class="table">
<thead>
<tr>
<th scope="col">Something</th>
<th scope="col">Code Version</th>
<th scope="col">Region</th>
<th scope="col">Something</th>
<th scope="col">Something</th>
<th scope="col">Something->Membership</th>
<th scope="col">SBMO</th>
<th scope="col">Something</th>
<th scope="col">IVR</th>
<th scope="col">CPM Something</th>
<th scope="col">Other</th>
</tr>
</thead>
<tbody>
<!-- start loop for mongodb collection: environments-->
<% environments.forEach(function(environment){ %>
<tr>
<td>
<%= environment.something %>
</td>
<td>
<%= environment.codeVersion %>
</td>
<td>
<%= environment.region %>
</td>
<!-- other td's go here --->
<!-- CELL WITH MULTIPLE LINES: -->
<td class="other">
<%= environment.other %>
</td>
<%}); %> <!-- end loop for environments -->
</tr>
</tbody>
</table>
CSS:
.table td {
padding: 0 !important;
margin: 0 !important;
vertical-align: middle;
border-right: 1px solid #d4d4d4;
}
other {
white-space: pre-wrap;
}
HUH函数
湖上湖
相关分类