材料无线电标签内容不会应用Text Wrap CSS Angular

时间:2017-12-19 20:13:42

标签: angular angular-material

我有一个固定宽度的广播组,我想要包装按钮标签。我已经尝试将类添加到html的每个部分,并为元素添加“white-space:normal”,但它只是忽略它。我怎样才能使它发挥作用?

Here is an example of where I am at

如果我将这个CSS添加到顶级styles.scss文件中,它可以按预期工作。

.mat-radio-label-content {
  white-space: normal;
}

但我想避免这种情况,并保持css仅与特定组件相关,而不是应用程序范围。

2 个答案:

答案 0 :(得分:10)

使用选择器将标签文本包裹在一个范围内。

    <style>
        .wrap-mat-radio-label {
            white-space: normal;
        }
    </style>

    <mat-radio-group>
        <mat-radio-button>     
            <span class="wrap-mat-radio-label">
                {{ season }}
            </span>
        </mat-radio-button>
    </mat-radio-group>

答案 1 :(得分:-1)

/ *在“ styles.css”中* /

.mat-checkbox-layout {
  white-space: normal !important;
}

.mat-radio-label {
    white-space: normal !important;
  }