Il serait bien d’envelopper css-styles pour différentes résolutions dans certaines classes css en utilisant moins.
J'aimerais faire quelque chose comme:
footer {
width: 100%;
}
.tablet {
footer {
width: 768px;
}
}
.desktop {
footer {
width: 940px;
}
}
À la fin, quelque chose comme ceci devrait être le résultat:
footer {
width: 100%;
}
@media screen and (min-width: 768px) {
footer {
width: 768px;
}
}
@media screen and (min-width: 992px) {
footer {
width: 940px;
}
}
.tablet pourrait ressembler à ceci:
@media screen and (min-width: 768px) {
.tablet {
}
}
J'espère que quelqu'un a une bonne idée!