LESS CSS 继承帮助
我试图通过使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这样
Try Like this
有时它会有所帮助。实际上并非在所有情况下都如此。
Sometimes it helps. Not in all situations actually.