Responsive ne fonctionne pas avec Android et IOS
Bonjour,
Je suis entrain de développer un site responsive. j'ai réduit écran ca fonctionne bien.
j'ai testé même sur téléphone windows phone fonctionne mais avec IOS et android non.
comment résoudre ce brobléme:
Voila mon code de la partie désign:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| @media screen and (min-width: 421px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 760px) {
}
@media screen and (max-width: 640px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 320px) {
} |