我想使用CSS在Angular的Ant设计中更改nz-date-picker的宽度。该怎么做?
答案 0 :(得分:0)
我找到了两种解决方案:
添加样式选择器类并设置宽度,例如:
.ant-calendar-picker { 宽度:100%; }
和html <nz-date-picker [nzStyle]="{'width': '100%'}" ...>
您可以在组件和样式调用类中设置encapsulation: ViewEncapsulation.None
.ant-calendar-picker { 宽度:100%; //覆盖内联ng zorro span样式宽度; }