The issue I am having is that, in the following code, I am having to use an "!important" tag on a section of my styling, and on resizing I need to change this, I have nested my media query, but I cannot get it to receive the special instructions at the nested settings.
@@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
#explorerStyle {
width: 100%;
left: -10px;
margin-top: 36px !important;
display: table;
margin: 0 auto;
}
@@media screen and (min-width: 992px) and (max-width:1199px) {
#explorerStyleSpan {
margin-top: 16px !important; <<<<<< Issue is here
}
}
}