Answer the question
In order to leave comments, you need to log in
How to combine Less media queries?
Hello!
There is a mixin function Less:
.media-s(@rules) {
@media screen and (max-width: 1023px) {
@rules();
}
};
div{
.media-s({width: 100%});
.media-s({color: #000});
}
@media screen and (max-width: 1023px) {
div {
width: 100%;
}
}
@media screen and (max-width: 1023px) {
div {
color: #000;
}
}
@media screen and (max-width: 1023px) {
div {
width: 100%;
color: #000;
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question