@import "style"; // imports the style.less @import "style.less"; // imports the style.less @import "style.php"; // imports the style.php as a less file @import "style.css"; // it will kept the statement as it is
<!doctype html> <head> <title>Import Directives</title> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <h2>Example of Import Directives</h2> <p class="myline">Welcome to Yiibai Tutorials...</p> </body> </html>
.myline { font-size: 20px; }
@import "h/"; .myline { color:#FF0000; }
lessc style.less style.css
.myline { font-size: 20px; } .myline { color: #FF0000; }