<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>LESS Mixins</title> </head> <body> <div class="myclass"> <h1>Welcome to Yiibai Yiibai</h1> <p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </div> </body> </html>
.a(){
padding-left: 100px;
}
.myclass{
background : #64d9c0;
.a;
}
lessc style.less style.css
.myclass {
background: #64d9c0;
padding-left: 100px;
}