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) {
…
}
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) {
…
}
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) {
....
}
}