【问题标题】:CSS is not working as expected with Angular MaterialCSS 无法与 Angular Material 一起按预期工作
【发布时间】: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


    【解决方案1】:

    我认为&lt;mat-list-item&gt; 标签有问题。我将其更改为&lt;mat-list&gt;。然后就可以了。

    查看-> 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>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2012-02-19
      • 2019-12-14
      • 2019-09-04
      • 2015-02-10
      • 1970-01-01
      • 2016-05-15
      • 2022-01-19
      • 1970-01-01
      相关资源
      最近更新 更多