码迷,mamicode.com
首页 > Web开发 > 详细

less实现css代码

时间:2016-09-18 21:11:29      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

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

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

  

less实现css代码

标签:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!