开发者

LESS CSS problem

开发者 https://www.devze.com 2023-03-14 19:51 出处:网络
I am trying to use LESS C开发者_开发知识库SS to write my CSS. I have imported the style.css and less.js file in that order.

I am trying to use LESS C开发者_开发知识库SS to write my CSS. I have imported the style.css and less.js file in that order.

But i am not able to generate the CSS when i write the CSS like this

@black: #231f20;
@brown: #241714;
@red: #cd0001;

#header #logo { width:224px; height: 75px; backgroud-color:@red;}

Link: http://bakasura.in/king/

Less File: http://bakasura.in/king/css/styles.less


backgroud-color:@red contains a typo.

Try background-color:@red instead.


Looking at your source you import the less.js after the styles.less

<link rel="stylesheet/less" href="css/styles.less">
<script src="js/less-1.1.3.min.js"></script>

This may or may not make any difference.

0

精彩评论

暂无评论...
验证码 换一张
取 消