<!doctype html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <div class="style"> <h3>Hello, You guys!</h3> </div> <p class="img">Welcome to Yiibai Yiibai</p> </body> </html>
.style {
h3{
color: #BF70A5;
font-size: 30px;
}
}
.img:extend(.style h3){}
lessc style.less style.css
.style h3,
.img {
color: #BF70A5;
font-size: 30px;
}