我只是学得少了。我有这样的html
文件
<!DOCTYPE HTML>
<html lang="en-IN">
<head>
<meta charset="UTF-8">
<title>.::LESS::.</title>
<link rel="stylesheet" type=text/css"" href="style.less" />
<script type="text/javascript" src="less.js"></script>
</head>
<body>
<div class="box1">This is box1</div>
<div class="box2">This is box2</div>
<div class="box3">This is box3</div>
</body>
</html>
我的style.less
文件是这样的
@blue : #00c;
@light-blue: @blue + #333;
@deep-blue: @blue - #333;
.box1 {
background-color: @blue;
}
.box2 {
background-color: @light-blue;
}
.box3 {
background-color: @deep-blue;
}
但是毕竟这当我要检查html page from the browser
它时没有显示任何东西。如果我changing the values of background-color
要检查,any color values
那么背景颜色可以在那里看到。有人可以告诉我错误的部分在哪里吗?欢迎任何帮助和建议。提前致谢。