css – 不能得到less.js工作

前端之家收集整理的这篇文章主要介绍了css – 不能得到less.js工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不能得到less.js的工作,我不知道为什么。我曾尝试过的HTML
<!DOCTYPE HTML>
<html lang="en">
    <head>
        <Meta charset="utf-8" />

        <!-- CSS -->
        <link rel="stylesheet/less"  href="main.less" />

        <!-- Javascript -->
        <!-- <script src="http://lesscss.googlecode.com/files/less-1.0.18.min.js"></script> -->
        <script src="less-1.0.18.min.js" type="text/javascript"></script>

    </head>
    <body>
        <p>
            Lorum ipsum
        </p>
    </body>
</html>

而且,

p {
    color: blue;
}

较少的1.0.18.min.js文件http://lesscss.googlecode.com/files/less-1.0.18.min.js下载。所有文件在同一个文件夹中。我不知道为什么这不工作

在Chrome 12.0.742.100中测试

编辑

尝试了lates less.js文件(less-1.1.3.min.js)。那一个也没有工作。

好吧现在…

这样做:

<link rel="stylesheet" type="text/less" href="main.less" />

但只有正常的css,没有比较具体的加价。

这根本不起作用:

<link rel="stylesheet/less" type="text/less" href="main.less" />

此外,这不工作:

<link rel="stylesheet/less" type="text/css" href="main.less" />

我勒个去?如何减少工作量?

发现错误

P.S.S. Less.js browser script currently won’t work if you’re using Chrome and the path to your page starts with “file:///” due to a known Chrome issue.

Soruce

解决方法

P.S.S. Less.js browser script currently won’t work if you’re using
Chrome and the path to your page starts with “file:///” due to a known
Chrome issue.

但是我们可以做的是使用wamp(pc)或mamap(mac)设置本地测试环境。那就行了。

原文链接:https://www.f2er.com/css/218443.html

猜你在找的CSS相关文章