我试图通过包含在组件中的子元素包含 css ng-content
。它似乎还没有在 Angular 2 中实现,或者除了将 css 放在通用样式表中之外,也许有人有解决方案?
app.component.ts
<comp-parent>
<comp-child></comp-child>
</comp-parent>
compParent.component.html
<div class="wrapper">
<ng-content></ng-content>
</div>
compParent.component.css
.wrapper > comp-child {
margin-right: 5px; <-- Not applied !!!
}