LESS.js不起作用,我知道使用Firefox的chrome bug

时间:2011-12-21 19:49:07

标签: less

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;
}

0 个答案:

没有答案