【发布时间】:2020-05-27 14:19:25
【问题描述】:
我试图覆盖自定义组件选择器的 css,但它不起作用。我试过:ng-deep 没有成功。我该如何找到解决方案?
app.component.html:
<mycustommcomp></mycustommcomp>
app.component.css:
::ng-deep mycustommcomp{
margin:2px;
overflow:unset !important;
}
mycustomcomp.component.css:
mycustommcomp{
margin:8px;
overflow:hidden !important;
}
演示:https://stackblitz.com/edit/angular-vsdzqs?file=src/app/app.component.css
【问题讨论】:
标签: css typescript angular7 angular8