Eu tenho esta @media
configuração:
HTML :
<head>
<meta name="viewport" content="width=device-width, user-scalable=no" />
</head>
CSS :
@media screen and (min-width: 769px) {
/* STYLES HERE */
}
@media screen and (min-device-width: 481px) and (max-device-width: 768px) {
/* STYLES HERE */
}
@media only screen and (max-device-width: 480px) {
/* STYLES HERE */
}
Com essa configuração, ele funciona no iPhone, mas não no navegador.
É porque eu já tenho device
no meta, e talvez o tenha max-width:480px
?
@media screen and (min-width:769px){
em torno de seus estilos normais do navegador