【发布时间】:2021-03-18 12:03:42
【问题描述】:
我正在使用 Angular Material mat-divider 创建一个表格。
1.在我的代码中,字段名称为Data Name
有些词最后消失了。
2.如果字段名称为Data Gain,则文本显示在框的边界之外。
如何设置/更改 CSS 以解决问题?
这里是 stackblitz 的链接 - https://stackblitz.com/edit/angular-9-material-starter-haalp4?file=src%2Fapp%2Fapp.component.html
这里是html
<div>
<ng-container>
<mat-list class="boxed app-class">
<mat-list-item class="bold" style='background-color: #c0c0c0;'>Data Name</mat-list-item>
<mat-list-item class="textFields">One morning, when Gregor Samsa woke from troubled dreams, he found himself
transformed in his bed into a horrible vermin. He lay on his armour-like back, and if he lifted his head a
little he could see his brown belly, slightly domed and divided by arches into stiff sections.
-</mat-list-item>
<mat-divider></mat-divider>
<mat-list-item class="bold" style='background-color: #c0c0c0;'>Data Gain</mat-list-item>
<mat-list-item class="textFields">
<table>
<tr>
<td>
One morning, when Gregor Samsa woke from troubled dreams, he found himself transformed in his bed into a
horrible vermin. He lay on his armour-like back, and if he lifted his head a little he could see his brown
belly, slightly domed and divided by arches into stiff sections. The bedding was hardly able to cover it
and seemed ready to slide off any moment. His many legs, pitifully thin compared with
</td>
</tr>
</table>
</mat-list-item>
</mat-list>
<section>
</section>
</ng-container>
</div>
【问题讨论】:
标签: html css angular-material