如何在nz-zorro中更改日期选择器的宽度

时间:2019-09-26 06:36:42

标签: html css angular

我想使用CSS在Angular的Ant设计中更改nz-date-picker的宽度。该怎么做?

1 个答案:

答案 0 :(得分:0)

我找到了两种解决方案:

  1. 添加样式选择器类并设置宽度,例如:

    .ant-calendar-picker {     宽度:100%;   }

    和html <nz-date-picker [nzStyle]="{'width': '100%'}" ...>

  2. 您可以在组件和样式调用类中设置encapsulation: ViewEncapsulation.None

    .ant-calendar-picker {     宽度:100%; //覆盖内联ng zorro span样式宽度;   }