gpt4 book ai didi

css - 如何以及在何处使用::ng-deep?

转载 作者:数据小太阳 更新时间:2023-10-29 09:13:57 26 4
gpt4 key购买 nike

如何以及在哪里可以在 Angular 4 中使用 ::ng-deep

其实我想从父组件中覆盖子组件的一些CSS属性。另外IE11支持吗?

最佳答案

通常 /deep/ “shadow-piercing” 组合器可用于将样式强制为 child components 。这个选择器有一个别名 >>>,现在有另一个名为::ng-deep 的别名。

自<强>/deep/ combinator 已弃用,推荐使用::ng-deep

例如:

<div class="overview tab-pane" id="overview" role="tabpanel" [innerHTML]="project?.getContent( 'DETAILS')"></div>

css

.overview {
::ng-deep {
p {
&:last-child {
margin-bottom: 0;
}
}
}
}

它将应用于子组件

关于css - 如何以及在何处使用::ng-deep?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46786986/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com