LESS CSS 继承帮助

发布于 2024-10-21 01:32:20 字数 266 浏览 4 评论 0原文

我试图通过使用 LESS 来简化我的 css 创建。到目前为止一切顺利,但是我遇到了一个问题,我的代码如下所示:

#content {

    h1 {
        font-size:20px;
    }

    h2 {
        font-size:10px;
    }
}

现在我也想将 font-weight:normal; 应用于 h1 和 h2,如果没有,我该如何做到这一点每条规则都有它吗?

im trying to streamline my css creation by using LESS. so far so good, however I came accross a problem, my code looks like so:

#content {

    h1 {
        font-size:20px;
    }

    h2 {
        font-size:10px;
    }
}

now i also want to apply font-weight:normal; to both the h1 and h2, how would i do this without having it in every rule?

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

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

发布评论

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

评论(3

雾里花 2024-10-28 01:32:20
h1, h2
{
    font-weight:normal;
}
h1, h2
{
    font-weight:normal;
}
西瑶 2024-10-28 01:32:20

尝试这样

#content {

    h1 {
        font-size:20px;
    }

    h2 {
        font-size:10px;
    }
    h1, h2
    {
        font-weight:normal;
    }
}

Try Like this

#content {

    h1 {
        font-size:20px;
    }

    h2 {
        font-size:10px;
    }
    h1, h2
    {
        font-weight:normal;
    }
}
爱的十字路口 2024-10-28 01:32:20
#content {
  font-weight:normal;
  h1 {
    font-size:20px;
  }

  h2 {
    font-size:10px;
  }
}

有时它会有所帮助。实际上并非在所有情况下都如此。

#content {
  font-weight:normal;
  h1 {
    font-size:20px;
  }

  h2 {
    font-size:10px;
  }
}

Sometimes it helps. Not in all situations actually.

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