【发布时间】:2021-02-23 13:00:09
【问题描述】:
我有一个 Angular 组件,单击按钮会打开模态对话框。我有许多这样的不同按钮,它们可以打开不同宽度的不同类型的模态对话框。我正在使用 Ng bootstrap 模态对话框和模态对话框都是相同的宽度,但我希望它是不同的宽度。我尝试覆盖模态对话框组件 ::ng-deep 中的 css 但 :host 不起作用。我在这里做错了什么,请提出建议。
我的模态对话框之一的 css 如下所示
::ng-deep .modal-dialog {
min-width: 700px !important;
max-width: 900px !important;
width: 95% !important;
background-color: red !important;
}
下面的css没有被应用
:host::ng-deep .modal-dialog {
min-width: 700px !important;
max-width: 900px !important;
width: 95% !important;
background-color: red !important;
}
【问题讨论】: