query queries only medidas ejemplos celular bootstrap and 959px 768px 400px css mobile media-queries

css - queries - @Media min-width & max-width



media query min and max (3)

El problema subyacente es usar max-device-width vs plain old max-width .

El uso de la palabra clave "dispositivo" se dirige a la dimensión física de la pantalla, no al ancho de la ventana del navegador.

Por ejemplo:

@media only screen and (max-device-width: 480px) { /* STYLES HERE for DEVICES with physical max-screen width of 480px */ }

Versus

@media only screen and (max-width: 480px) { /* STYLES HERE for BROWSER WINDOWS with a max-width of 480px. This will work on desktops when the window is narrowed. */ }

Tengo esta configuración de @media :

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 */ }

Con esta configuración, funciona en el iPhone pero no funciona en el navegador.

¿Es porque ya tengo un device en el meta y quizás tenga max-width:480px lugar?


El valor correcto para el atributo de content debe incluir initial-scale lugar:

<meta name="viewport" content="width=device-width, initial-scale=1"> ^^^^^^^^^^^^^^^


He encontrado que el mejor método es escribir tu CSS predeterminado para los navegadores más antiguos, como navegadores más antiguos, como por ejemplo 5.5, 6, 7 y 8. No se puede leer @media. Cuando uso @media lo uso así:

<style type="text/css"> /* default styles here for older browsers. I tend to go for a 600px - 960px width max but using percentages */ @media only screen and (min-width:960px){ /* styles for browsers larger than 960px; */ } @media only screen and (min-width:1440px){ /* styles for browsers larger than 1440px; */ } @media only screen and (min-width:2000px){ /* for sumo sized (mac) screens */ } @media only screen and (max-device-width:480px){ /* styles for mobile browsers smaller than 480px; (iPhone) */ } @media only screen and (device-width:768px){ /* default iPad screens */ } /* different techniques for iPad screening */ @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { /* For portrait layouts only */ } @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) { /* For landscape layouts only */ } </style>

Pero puede hacer lo que quiera con su @media, esto es solo un ejemplo de lo que he encontrado mejor para mí al crear estilos para todos los navegadores.

Especificaciones iPad CSS.

¡También! Si buscas imprimibilidad, puedes usar @media print{}