less11 属性合并

less

less11 属性合并
//+ 合并以后,以逗号分割属性值
.mixin() {
  box-shadow+: inset 0 0 10px #555 ;
}
.myclass {
  .mixin();
  box-shadow+: 0 0 20px black;
}

//+_ 合并以后,以空格分割属性值
.a(){
  background+:#f60;
  background+_:url("/sss.jod") ;
  background+:no-repeat;
  background+_:center;
}
.myclass {
  .a()
}
//background+_:#f60 url("/sss.jod");
less11 属性合并

css

less11 属性合并
.myclass {
  box-shadow: inset 0 0 10px #555 , 0 0 20px black;
}
.myclass {
  background: #f60 url("/sss.jod"), no-repeat center;
}
less11 属性合并

 

本文转自农夫山泉别墅博客园博客,原文链接:http://www.cnblogs.com/yaowen/p/7001644.html,如需转载请自行联系原作者

上一篇:淘宝千人千面背后的秘密:搜索推荐广告三位一体的在线服务体系AI·OS


下一篇:css:整理9种元素水平垂直居中的方法