less实现css代码

@import "public.less";   //合并公告样式

@boxsize:200px;            //设置变量
@boxColor:red;
@spanColor:green;
@spansize:40px;
body,html{
    position: relative;
}
#box{                      //写样式
     @boxsize;
    height: @boxsize;
    background: @boxColor;
    position: absolute;
    top: 0;
    left: -@boxsize;
    span{                     //子类样式
         @spansize;
        height: @spansize;
        background: @spanColor;
        position: absolute;
        top: 0;
        left: 100%; 
    }
}
#cover{
     @spansize;
    height: @spansize;
    position: absolute;
    top: 0;
    left: 0;
}

  

原文地址:https://www.cnblogs.com/lijiahui199494/p/5882923.html