级联样式在angular4 +中发生变化

时间:2017-06-09 09:11:56

标签: angular

// component parent - template
<div class="parent">
    <ng-content></ng-content>
</div>


// somewhere in the code
<parent>
    <label>Some Text</label>
</parent>

如在父组件的样式中设置标签的颜色?

.parent label
    color: red

1 个答案:

答案 0 :(得分:1)

您需要为ng-content组件的父parent中的元素指定样式。而对于其他一切 - 在parent组件中。 请查看plunker example