Firefox没有阅读任何样式。甚至宽度或高度都没有。我错过了部分设置吗?
我的index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Learning Less</title>
<link rel="stylesheet/less" href="style.less" type="text/css"/>
<script src="http://lesscss.googlecode.com/files/less-1.0.18.min.js"></script>
</head>
<body>
<div id="container">
<a href="#">Hello World</a>
</div>
</body>
</html>
我的样式表style.less
@primary-color: red;
#container {
width:200px;
height:200px;
background: @primary-color;
}