Вы думаете об этом неправильно - вам нужно просто применить стили, которые вы хотите, а затем сбросить их в вашем, т.е. только медиа-запросе
/* use this to style all browsers */
.no-ie-style {
font-weight: bold;
text-decoration: underline;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* use this to reset to defaults */
.no-ie-style {
font-weight: normal;
text-decoration: none;
}
}
<div class="no-ie-style">hello</div>