私はあまりhtml
学んでいません。私はこのようなファイルを持っています
<!DOCTYPE HTML>
<html lang="en-IN">
<head>
<meta charset="UTF-8">
<title>.::LESS::.</title>
<link rel="stylesheet" type=text/css"" href="style.less" />
<script type="text/javascript" src="less.js"></script>
</head>
<body>
<div class="box1">This is box1</div>
<div class="box2">This is box2</div>
<div class="box3">This is box3</div>
</body>
</html>
私のstyle.less
ファイルはこのようなものです
@blue : #00c;
@light-blue: @blue + #333;
@deep-blue: @blue - #333;
.box1 {
background-color: @blue;
}
.box2 {
background-color: @light-blue;
}
.box3 {
background-color: @deep-blue;
}
しかし、結局、html page from the browser
何も表示されていないことを確認しようとchanging the values of background-color
するとany color values
、背景色がそこに表示されます.どこが間違っているのか教えてもらえますか?ヘルプや提案は大歓迎です.前もって感謝します。