标签: less
我尝试在LESS mixin内对当前选择器&执行一些字符串操作,但无论我尝试什么,我都会获得&替换字符而不是实际的选择器查询。有没有办法以某种方式获取实际的选择器,或者LESS中的操作队列是否禁止这样做?
&
.mixin() { @current: &; test: ~`console.log("@{current}"), "@{current}"`; } .thing { display: block; .mixin(); }