問題タブ [angular2viewencapsulation]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
css - Angular 11の兄弟コンポーネントにない子に親コンポーネントのcssを適用します
i) ログイン前、ii) ログイン後、2 種類のコンポーネントがあります。
両方の親コンポーネントに 2 つの異なる CSS を追加したい、
ViewEncapsulation.Noneを使用すると、兄弟コンポーネントにも適用されます。コードの構造は次のとおりです。
ParentComponent1に CSS を追加すると、2.1 と 2.2 ではなく ChildComponent1.1 と ChildComponent1.2 にのみ適用されます。同じことがParentComponent2にも適用されます。
ViewEncapsulation.Noneを削除するか、兄弟コンポーネントではなく子コンポーネントにのみ CSS を適用する方法はありますか