作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个固定宽度的单选按钮组,我希望按钮标签可以换行。我试过向 html 的每个部分添加类,并向元素添加“white-space: normal”,但它只是忽略了它。我怎样才能让它发挥作用?
Here is an example of where I am at
如果我将此 CSS 添加到顶级 styles.scss 文件中,它会按预期工作。
.mat-radio-label-content {
white-space: normal;
}
但我想避免这种情况,让 css 只与特定组件相关,而不是应用范围。
最佳答案
用选择器将标签文本包裹在一个范围内。
<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>
关于angular - Material 单选标签内容不会应用文本换行 CSS Angular,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47894524/
我是一名优秀的程序员,十分优秀!