W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
注釋的適當(dāng)使用可以保證代碼的可讀性,Less 支持兩種類型的注釋:多行注釋和單行注釋。
注釋使代碼清晰,并允許用戶輕松地理解。 您可以在代碼中使用塊樣式和行內(nèi)注釋,但是當(dāng)編譯LESS代碼時(shí),單行注釋不會(huì)顯示在CSS文件中。
下面的例子演示了在LESS文件中使用注釋:
<html>
<head>
<title>Less Comments</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>Example using Comments</h1>
<p class="myclass">LESS enables customizable, manageable and reusable style sheet for web site.</p>
<p class="myclass1">It allows reusing CSS code and writing LESS code with same semantics.</p>
</body>
</html>
接下來,創(chuàng)建文件 style.less 。
/* It displays the
green color! */
.myclass{
color: green;
}
// It displays the blue color
.myclass1{
color: red;
}
您可以使用以下命令將 style.less 文件編譯為 style.css :
lessc style.less style.css
接下來執(zhí)行上面的命令,它將用下面的代碼自動(dòng)創(chuàng)建 style.css 文件:
/* It displays the
green color! */
.myclass {
color: green;
}
.myclass1 {
color: red;
}
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上述html代碼保存在 comments.html 文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: