请你能告诉我为什么这个 LESSCSS 不起作用吗?H2不变色?
谢谢
StyleSheet2.less
@color: blue;
#header {
color: @color;
}
h2 {
color: @color;
}
HTML
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="Scripts/jquery-2.0.3.min.js" type="text/javascript"></script>
<link href="_/css/StyleSheet1.css" rel="stylesheet" />
<script src="_/script/JavaScript1.js" type="text/javascript"></script>
<link rel="stylesheet/less" type="text/css" href="_/css/StyleSheet2.less">
<script src="_/script/less-1.4.1.min.js" type="text/javascript"></script>
<!-- css3-mediaqueries.js for IE less than 9 -->
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
</head>
<body>
<div>
<div id="bodyDiv">
a<br />
a<br />
a<br />
a<br />
a<br />
a<br />
a<br />
a<br />
a<br />
a<br />
a<br />
<h2>test</h2>a<br />
a<br />
</div>
</div>
</body>
</html>