<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Mixin Namespaces</title> </head> <body> <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> </body> </html>
#outer() {
background:yellow;
.inner {
color: red;
}
}
p {
#outer > .inner;
}
lessc style.less style.css
p {
color: red;
}