Issue: Style problems only in IE
Sometimes websites look as intended on all browsers except IE. To solve this problem we need to write IE specific css.
Solution: Create IE specific css with media query
If you want to have css styles that target only IE ( works for IE10+ ), you can use a Microsoft-specific media query. It is recognized only by IE.
1 2 3 4 |
@media all and (-ms–high–contrast: active) { /* IE10+ CSS styles go here */ } |
More about -ms-high-contrast he has 1 outbound link(s), all nofollowed.re