html 用不了
这是 html 部分
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>less</title>
<link rel="stylesheet/less" type="text/css" href="less/sty.less">
<script src="js/less.min.js"></script>
</head>
<body>
<div class="wot"></div>
<div class="less"></div>
</body>
</html>
less部分
/* LESS Document */
.border-radius (@radius) {
border-radius: @radius;
-moz-border-radius: @radius;
-webkit-border-radius: @radius;
}
#header {
.border-radius(4px);
}
.button {
.border-radius(6px);
}
.boder(@border){
border:@boder;
}
.wot{
.boder(solid 1px #F00)
}