KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
| Zeile 22: | Zeile 22: | ||
.grid-box { | .grid-box { | ||
display:grid; | display:grid; | ||
grid-template-columns: | grid-template-columns: 98%; | ||
} | } | ||
Version vom 21. Mai 2019, 12:57 Uhr
/*** Formatierungen für Monitore ***/
@media (min-width:901px) {
.grid-box {
display:grid;
grid-template-columns: 50% 50%;
}
.box-01 {
background: red;
}
} /* Ende Formatierungen für Monitore */
/*** Formatierungen für Mobil-Geräte ***/
@media (max-width: 900px) {
.grid-box {
display:grid;
grid-template-columns: 98%;
}
} /* Ende Formatierungen für Mobil-Geräte */