我试图覆盖自定义组件选择器的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
您无法执行此操作,因为样式无法应用于组件标签。一种有效的方法是用容器(例如div)将内容包装在mycustommcomp中。