文本在表格单元格中的垂直alignment
这是我的表格的一部分(这是一个表格):
那些在<tr>
中只有两个<td>
<tr>
。 我试图把说明放在顶部,而不是放在底部。
我怎样才能做到这一点?
td.description {vertical-align: top;}
其中的description
是td
带有文本的类名
<td class="description">Description</td>
或内联(yuk!)
<td style="vertical-align: top;">Description</td>
尝试td.description {line-height:15px}
将行高值设置为所需的值。
valign="top"
应该做的工作。
我有同样的问题,但通过使用!important
解决它。 我忘了CSS
的inheritance。 只是一个提示,先检查。
如果您正在使用Bootstrap,请为您的表添加以下自定义样式设置:
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { vertical-align: middle; }