Wechseln zu:Navigation, Suche
Wiki
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Los */
/*** Formatierungen für Monitore ***/
 
@media (min-width:901px) {
 
.grid-box {
.grid-box {
   display:grid;
   display:grid;
Zeile 8: Zeile 11:
   background: red;
   background: red;
   }
   }
}
/* Ende Formatierungen für Monitore */
/*** Formatierungen für Mobil-Geräte ***/
@media (max-width: 900px) {
.grid-box {
  display:grid;
  grid-template-columns: 100%;
  }
}

Version vom 21. Mai 2019, 13:55 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: 100%;
  }
}