如何在 Ng-Zorro 中使用多行选项构建 <select>
How can I build a <select> with multiline options in Ng-Zorro
我在 Angular 项目
中使用 The Ng-Zorro
我在 select/option 中的长文本有问题,它已显示在图片中
- 长文本必须多行显示
- 水平滚动条必须隐藏
您可以使用 CSS 样式处理它:
将 white-space
更改为 ant-select-option-content
.ant-select-item-option-content {
white-space: unset;
}
上的工作演示
我在 Angular 项目
中使用 The Ng-Zorro我在 select/option 中的长文本有问题,它已显示在图片中
- 长文本必须多行显示
- 水平滚动条必须隐藏
您可以使用 CSS 样式处理它:
将 white-space
更改为 ant-select-option-content
.ant-select-item-option-content {
white-space: unset;
}
上的工作演示