【发布时间】:2021-11-26 02:34:12
【问题描述】:
我有一个角度嵌套的表格 (class="inner-table"),但是在使用边框底部到 tr 时它不显示
<table>
<td>
<table class="inner-table">
<tr>row1</tr>
<tr>row2</tr>
</table>
</td>
</table>
CSS
.inner-table tr{
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
line-height: 2;
border-bottom: 1px solid black;
}
【问题讨论】:
-
你能把你的css也包括在这里吗?
-
@SarahCox 刚刚添加,对此感到抱歉
标签: css angular html-table mat-table