[CSS] IE Style Target
Posted Answer1215
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[CSS] IE Style Target相关的知识,希望对你有一定的参考价值。
Ref: http://blogs.quovantis.com/browser-specific-hacks-for-frontend-developers/
Internet Explorer
Css hacks
:root .selector {
Property: Value\\9; color: red\\9;
}
Conditional Comments
<!–[if IE 9]> Internet Explorer 9 <![endif]–>
<!–[if lte IE 9]> Internet Explorer 9 or less <![endif]–>
<!–[if gte IE 9]> Internet Explorer 9 or greater <![endif]—>
For example:
<!–[if IE 9]>
<link rel=”stylesheet” type=”text/css” href=”all-ie-only.css” />
<![endif]–>
IE 10 and above
_:-ms-lang(x), .selector { property:value; }
@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ie10up {property: value;}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ie10up {property: value;}
}
IE 11 and above
_:-ms-fullscreen, :root .ie11up { property:value; }//Works for IE 11 and above
*::-ms-backdrop, :root .selector { property:value; }//Works for IE 11
IE 11+, Microsoft Edge Browser
/* Put this code in external stylesheet: ie11up.css */
@charset “<Any Modern Browser but MSIE 10- or FF 18- >”; _:-ms-lang(x), .selector { property:value; }
javascript hacks
var isIE = ‘behavior’ in document.documentElement.style && ‘- ms-user-select’ in document.documentElement.style;
var isIE = window.navigator.msPointerEnabled;
var isIE = document.body.style.msTouchAction !== undefined;
以上是关于[CSS] IE Style Target的主要内容,如果未能解决你的问题,请参考以下文章