<!doctype html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <h2>Example using extend inside media</h2> <img src="http://www.yiibai.com/less/images/nature.jpg" class="style"> </body> </html>
@media screen {
.style {
width:500px;
}
@media (min-width: 1023px) {
.style {
width:500px;
}
}
}
.cont:extend(.style) {}
lessc style.less style.css
@media screen {
.style,
.cont {
width: 500px;
}
}
@media screen and (min-width: 1023px) {
.style,
.cont {
width: 500px;
}
}