LESS在localhost Linux上不起作用

时间:2014-10-13 13:53:40

标签: php css linux less localhost

我想使用LESS,但它在我的localhost中不起作用。

这是我的index.php

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <meta http-equiv="content-type" content="text/html; utf-8">
  <link rel="stylesheet/less" type="text/css" href="styles.less">
  <script src="less.js" type="text/javascript"></script>
  </head>
  <body>

</body>
</html>

这是我的styles.less

@nice-blue: #5B83AD;

body{
backgroud-color: @nice-blue;
}

And here is my page and firebug

1 个答案:

答案 0 :(得分:0)

您不应该直接在HTML中使用较少的文件。 Less是一个CSS预处理器,需要编译才能被浏览器读取。

按照此处的示例(http://lesscss.org/)了解如何编译LESS文件,以便您可以使用CSS。