I am trying to use media queries in only one browser (IE) but nothing I have tried is working.
For example:
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* Styles go here for IE */
    @media screen and (max-width: 700px) {
        .article {
            width: 100%!important;
        }
    }
 }
I am trying to have a media query that only works for IE and nothing else, but this isn't having any affect. I have also tried:
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none), (max-width: 1320px) {
    div#desktop-nav {
        padding-left: 0px!important;
        padding-right: 0px!important;
    }
}
I added the max-width to the end of the media query.
If anyone has any clue how to do media queries for one specific browser please let me know
 
     
    