首页 > 解决方案 > CSS 无法与 Angular Material 一起按预期工作

问题描述

我正在使用 Angular Materialmat-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>

标签: htmlcssangular-material

解决方案


我认为<mat-list-item>标签有问题。我把它改成了<mat-list>. 然后它工作。

查看-> https://stackblitz.com/edit/angular-9-material-starter-fbrr6z?file=src%2Fapp%2Fapp.component.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 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>
      <mat-divider></mat-divider>
      <mat-list-item class="bold" style='background-color: #c0c0c0;'>Data Gain</mat-list-item>
      <mat-list 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>
    </mat-list>
    <section>

    </section>
  </ng-container>


</div>

推荐阅读