角组件样式的目标主机

时间:2019-01-02 15:28:01

标签: html css angular

我使用.view-body类在div内添加了一个角度动态组件:

<div _ngcontent-c27="" class="view-body" style="">

  <ng-component _nghost-c36="" class="ng-star-inserted">

  -- component template --

  </ng-component>

</div>

问题:我想根据生成的动态组件的类型向.view-body添加特定样式。

如果该组件的样式表中包含:

:host {
  background:red
}

样式将被添加到ng-component元素。

如何以角度定位宿主元素的宿主?

我也尝试过:

:host {
   :host {
    background: red
  }
}

当然没有成功。有什么想法吗?

0 个答案:

没有答案