I currently have following width specific media query.
@media only screen and (max-width: 1920px) {
.toggleMultiSelect .filter {
width: 566px;
Did you try combining them like this -
@media only screen and (max-width: 1920px) {
.toggleMultiSelect .filter {
width: 566px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.toggleMultiSelect .filter {
width: 575px;
}
}
}
This may work am Not sure, am using Mac so no way to test, But I think this will work for you. Hope this was helpful.