嵌套> Less-CSS 中的(大于)
在 LESS-CSS 中, this:
.a {
.b {
font-color:red;
}
}
相当于
.a .b {
font-color:red;
}
Is there an Nested equal of >
?
.a > .b {
font-color:red;
}
In LESS-CSS, this:
.a {
.b {
font-color:red;
}
}
is equivalent to
.a .b {
font-color:red;
}
Is there an nested equivalent of >
?
.a > .b {
font-color:red;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是这样做的:
This does it: