Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/04/2017, 07:28
marcwolf
 
Fecha de Ingreso: junio-2010
Mensajes: 353
Antigüedad: 13 años, 10 meses
Puntos: 6
@media max-width dentro de @media min-width en explorer no funciona

Hola,

me gustaria saber porqué no funciona el siguiente código en internet explorer 11, en chrome, firefox, safari y todos los mobiles que he probado funciona bien.

Código CSS:
Ver original
  1. @media only screen and (min-width:1111px){
  2.  
  3.     @media only screen and (max-width:1440px){
  4.        
  5.        
  6.     }
  7.  
  8.     @media only screen and (max-width:1240px){
  9.        
  10.        
  11.     }
  12.  
  13. etc...
  14.  
  15. }

Saludos