問題タブ [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.

0 投票する
1 に答える
25 参照

css - Angular 11の兄弟コンポーネントにない子に親コンポーネントのcssを適用します

  1. i) ログイン前、ii) ログイン後、2 種類のコンポーネントがあります。

  2. 両方の親コンポーネントに 2 つの異なる CSS を追加したい、

  3. ViewEncapsulation.Noneを使用すると、兄弟コンポーネントにも適用されます。コードの構造は次のとおりです。

  4. ParentComponent1に CSS を追加すると、2.1 と 2.2 ではなく ChildComponent1.1 と ChildComponent1.2 にのみ適用されます。同じことがParentComponent2にも適用されます。

ViewEncapsulation.Noneを削除するか、兄弟コンポーネントではなく子コンポーネントにのみ CSS を適用する方法はありますか