LESS使用心得(+)

less使用子类选择器,可以使用 >
但实际使用中有问题,需要注意 >后需要添加“空格”:

.content{
    > :not(:last-child){
          margin-top:30px;
    }
}

Less中添加相同前缀的class

这种需要一个函数编程,提出条件,类似循环完成设置的class.
Dynamic class names in LESS

参考链接:
LESS nested rule for selecting all except a pseudo element

你可能感兴趣的:(LESS使用心得(+))