less中一些公用的方法

2018-03-20  本文已影响0人  ismyshellyiqi

minx.less

.border-radius(@radius:5px){
  -webkit-border-radius: @radius;
  -moz-border-radius: @radius;
  -ms-border-radius: @radius;
  -o-border-radius: @radius;
  border-radius: @radius;
}
.n-ellipsis(@n){
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: @n;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-all;
}
.ellipsis{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.clearfix:after{
  content:'\0020';
  display:block;
  height:0;
  clear:both;
}
.clearfix{*zoom:1}
上一篇 下一篇

猜你喜欢

热点阅读