<!doctype html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <div class="container"> <h3>Welcome to Yiibai Yiibai</h3> <div class="style"> <ul class="nav"> <li>SASS </li> <li>LESS</li> </ul> </div> </div> </body> </html>
.style.nav, .nav h3 { color: orange; } .nav { &:hover { color: green; } } .container:extend(.nav all) {}
lessc style.less style.css
.style.nav, .nav h3, .style.container, .container h3 { color: orange; } .nav:hover, .container:hover { color: green; }