本文介绍了LESS中的立即子选择器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
还有没有LESS在其输出中应用立即子选择器(>)?
Is there anyway to have LESS apply the immediate child selector ( > ) in its output?
在我的style.less中,我想写如下: / p>
In my style.less, I want to write something like:
.panel {
...
> .control {
...
}
}
有LESS生成如下:
.panel > .control { ... }
推荐答案
实际上,原始问题中的代码运行正常。您可以直接使用>
子选择器。
Actually, the code in the original question works fine. You can just stick with the >
child selector.
找到答案。
.panel {
...
>.control {
...
}
}
注意 >和。,否则将无法工作。
Note the lack of space between ">" and ".", otherwise it won't work.
这篇关于LESS中的立即子选择器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!