Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
/* All Smartphones in portrait and landscape ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* YOUR STYLE GOES HERE */
}
/* All Smartphones in landscape ----------- */
@media only screen
and (min-width : 321px) {
/* YOUR STYLE GOES HERE */
}
/* All Smartphones in portrait ----------- */
@media only screen
and (max-width : 479px) {
/* YOUR STYLE GOES HERE */
}
Und was soll bei den mobilen Geräten (Smartphone, Tablet) im Hochformat (portrait) geschehen?ich würde ja gerne nur die Geräte im Landscape anschprechen
max-device-width spricht PCs nicht an.und hiermit spreche ich doch auch PCs an, wie wir eben festgestellt haben:
/* All Smartphones in landscape ----------- */
@media only screen
and (min-width : 321px) {
/* YOUR STYLE GOES HERE */
}
@media only screen and (min-device-width:320px) and (max-device-width:480px){... }
media only screen and (min-device-width:320px) and (max-device-width:736px){... }