It would be nice to wrap css-styles for different resolutions within some css-classes using less.
I'd like to do something like:
footer {
width: 100%;
}
.tablet {
footer {
width: 768px;
}
}
.desktop {
footer {
width: 940px;
}
}
At the end something like this should be the result:
footer {
width: 100%;
}
@media screen and (min-width: 768px) {
footer {
width: 768px;
}
}
@media screen and (min-width: 992px) {
footer {
width: 940px;
}
}
.tablet could look somehow like this:
@media screen and (min-width: 768px) {
.tablet {
}
}
Hope somebody has a nice idea!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…