<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>
/* It displays the
green color! */
.myclass{
color: green;
}
// It displays the blue color
.myclass1{
color: red;
}
lessc style.less style.css
/* It displays the
green color! */
.myclass {
color: green;
}
.myclass1 {
color: red;
}