如何覆盖内容 div 中的 CSS 类

发布于 2024-09-03 16:48:48 字数 277 浏览 5 评论 0原文

我想在内容块中重新实现属性边距权。

这是内容 id css:

#content h2 {
      margin-right:2px;
            }

这是 bloc 类 css:

    .bloc h2 {
margin-right:0px;
                }

我想要“.bloc”css 的 margin-right 而不是“#content”css

I want to reimplement the property margin-right in a bloc whitin a content.

this is the content id css:

#content h2 {
      margin-right:2px;
            }

this is the bloc class css:

    .bloc h2 {
margin-right:0px;
                }

I want the margin-right of the ".bloc" css fires rather than the "#content" css

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

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

发布评论

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

评论(2

維他命╮ 2024-09-10 16:48:48

尝试!重要,像这样:

.bloc h2 
{
    margin-right:0px !important;
}

Try !important, like this:

.bloc h2 
{
    margin-right:0px !important;
}
忘你却要生生世世 2024-09-10 16:48:48

你可以尝试这个:

#content .bloc h2
{
    margin-right: 0;
}

我不确定我是否完全理解你的问题,尤其是最后一句话......

You could try this :

#content .bloc h2
{
    margin-right: 0;
}

I'm not sure I understood your question perfectly well, especially the last sentence...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文