<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>LESS selectors</title> </head> <body> <h2>Welcome to Yiibai Yiibai</h2> <div class="div1"> <p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </div> <div class="div2"> <p>LESS is a dynamic style sheet language that extends the capability of CSS. LESS is also cross browser friendly.</p> </div> </body> </html>
@selector: h2;
@{selector} {
background: #2ECCFA;
}
lessc style.less style.css
body {
background: #2ECCFA;
}