嵌套SCSS应用于Angular中的儿童组件时不起作用

发布于 2025-01-18 04:35:42 字数 436 浏览 2 评论 0原文

父级 HTML

 <childComponent class="applyToChild"> </childComponent>

在子组件中父级的 HTML

<p>ABCD</p>
<ul>
<li>
<p> XYZ </p>
<li>
</ul>

.scss(在父级组件中应用样式)未重新映射

 .applyToChild{
    
    p {
    font-size:25px;
    }
    
    ul
  {
      li{
        background-color:blue;
       }
   }
    }

Parent HTML

 <childComponent class="applyToChild"> </childComponent>

In ChildComponent HTML

<p>ABCD</p>
<ul>
<li>
<p> XYZ </p>
<li>
</ul>

.scss of Parent (applying styles in the parent component) is not getting refeleted

 .applyToChild{
    
    p {
    font-size:25px;
    }
    
    ul
  {
      li{
        background-color:blue;
       }
   }
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心房敞 2025-01-25 04:35:42

这很可能是因为您的样式已封装。解决此问题的一种方法是使用:: ng-deep-pseudo-selector:

:host ::ng-deep {
    .applyToChild{
        p {
            font-size:25px;
        }
        ul {
            li{
                background-color:blue;
            }
        }
    }
}

This is most likely because your style is encapsulated. One way around this is to use the ::ng-deep pseudo-selector:

:host ::ng-deep {
    .applyToChild{
        p {
            font-size:25px;
        }
        ul {
            li{
                background-color:blue;
            }
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文