次の Web コンポーネント ツリーを使用しています。
<x-typography>
:shadow-root
<x-select>
:shadow-root
<div class="select-container>
</div>
</x-select>
</x-typography>
そして、background-color
onをオーバーライドする必要がありますselect-container
。<x-select>
コードにはアクセスできません<x-typography>
。
私は方法:host
と::slotted
動作を知っています、私は試しました:
:host(x-typography):host(x-select) .select-container
:host(x-typography):host(x-select) .select-container
:host(x-typography :host(x-select)) .select-container
しかし、どれも機能しません。