单行注释:在Less中,单行注释使用//编写,后跟注释。单行注释不会显示在生成的CSS输出中。
多行注释:在Less中,多行注释写在/*?。*/之间。多行注释保留在生成的CSS输出中。
<!DOCTYPE html> <html> <head> <title>Less Comments Example</title> <link rel="stylesheet" type="text/css" href="simple.css" /> </head> <body> <h1>Example using Comments</h1> <p class="myclass">lidihuo</p> <p class="myclass1">A solution of all technology.</p> </body> </html>
/* It displays the red color! */ .myclass{ color: red; } // It displays the green color .myclass1{ color: green; }
/* It displays the red color! */ .myclass { color: red; } .myclass1 { color: green; }