Código HTML:
<!-- smartphone 240x320 --> <link rel="stylesheet" href="css/smartphone-240.css" media="only screen and (max-width : 240px)"> <!-- smartphone vertical 320x480--> <link rel="stylesheet" href="css/smartphone-portrait.css" media="only screen and (max-width : 320px)">
smartphone-240.css:
Código HTML:
@media only screen and (max-width: 240px) { estilos}
Código HTML:
@media only screen and (max-width : 320px) { estilos }
He probado a cambiar la llamada al css en el HTML por:
Código HTML:
<link rel="stylesheet" href="css/smartphone-portrait.css" media="only screen and (min-width: 241px) and (max-width : 320px)">
¿Qué estoy haciendo mal?