标签:混合 模式 radius order 20px var ack variable mixin
.border{ border:1px solid red; } .box{ .border; width:150px; height:150px; background: blue; }
.border_02(@border_width){ border:solid #fff @border_width; } .test_hunhe{ .border_02(30px); }
.border_03(@border_width:10px){ border:solid #fff @border_width; } .test_hunhe_03{ .border_03();//.border_03(50px); }
.border_radius(@border_radius){ -webkit-border-radius:@border_radius; -moz-border-radius:@border_radius; border-radius:@border_radius; } .radius_test{ .border_radius(20px); width:40px; height:40px; background:green; }
标签:混合 模式 radius order 20px var ack variable mixin
原文地址:http://www.cnblogs.com/yuxinpeng/p/6086392.html