This question has already been answered:
Internet Explorer 10 does not support conditional comments. Hence the question: how to write the CSS content for Internet Explorer 10 only?
This question has already been answered:
Internet Explorer 10 does not support conditional comments. Hence the question: how to write the CSS content for Internet Explorer 10 only?
A similar question was asked earlier and an answer has already been received. If the answers provided are not exhaustive, please ask a new question .
Excellent article on this topic: https://www.kobzarev.com/makeup/ie10-css-hacks/
My favorite hack:
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { /* стили только для IE10 и 11 */ }
Source: https://ru.stackoverflow.com/questions/164747/
All Articles