Smartphone portrait - paysage
Fermé
steve-elipz
Messages postés
148
Date d'inscription
mercredi 4 avril 2012
Statut
Membre
Dernière intervention
7 avril 2018
-
29 août 2014 à 23:08
steve-elipz Messages postés 148 Date d'inscription mercredi 4 avril 2012 Statut Membre Dernière intervention 7 avril 2018 - 29 août 2014 à 23:30
steve-elipz Messages postés 148 Date d'inscription mercredi 4 avril 2012 Statut Membre Dernière intervention 7 avril 2018 - 29 août 2014 à 23:30
A voir également:
- Smartphone portrait - paysage
- Smartphone - Guide
- Voici la technique la plus simple pour supprimer une application de votre smartphone - Guide
- Powerpoint portrait - Guide
- Marques smartphone à éviter - Accueil - Guide téléphones
- Format paysage word - Guide
1 réponse
steve-elipz
Messages postés
148
Date d'inscription
mercredi 4 avril 2012
Statut
Membre
Dernière intervention
7 avril 2018
29 août 2014 à 23:30
29 août 2014 à 23:30
j ai meme essayé ca... mais sur pc, iphone, android en portrait en paysage peut importe tout reste rouge???
accueil.html
smart.css
accueil.html
<link rel="stylesheet" href="smart.css" />
smart.css
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
body { background: grey }
}
/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
body { background: red }
}
/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {
body { background: blue }
}
/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
body { background: black }
}
/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
body { background: yellow }
}
/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
body { background: green }
}
/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
body { background: brown }
}