<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>LESS Variables in Import Statements</title> </head> <body> <div class="myclass"> <h2>Welcome to Yiibai Yiibai</h2> <p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </div> </body> </html>
@path : "https://www.tw511.com/less"; @import "@{path}/external1.less"; .myclass{ color : #A52A2A; }
.myclass{ background: #C0C0C0; }
lessc style.less style.css
body { background: #C0C0C0; } p { color: #A52A2A; }