media querys navigator edge

0

I need to place media query only for browser edge

  

minimum size 400px maximum 600px

How would it be?

I have this, I need it to work only on the edge browser

@media screen and (max-width:400px) and (max-height:600px) {
   …
}
    
asked by Javier 01.08.2017 в 20:47
source

1 answer

0

Try this, but Microsoft is working to eliminate all -ms prefixes and thus adapt to the standards, so if this "trick" continues to work at some point, it will stop doing so.

@supports (-ms-ime-align:auto) { 
    @media screen and (max-width:400px) and (max-height:600px) {
        ....
    }
}
    
answered by 04.08.2017 в 13:04