我遇到的问题是,在下面的代码中,我必须在我的样式部分使用“!important”标记,并且在调整大小时我需要更改它,我已经嵌套了我的媒体查询,但我不能让它在嵌套设置上收到特殊说明。
@@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
}
}
}