This question already has answers here:
Detecting IE11 using CSS Capability/Feature Detection
(18个回答)
7年前关闭。
我在IE11中遇到填充问题,我尝试使用IE特定语句(如)来控制CSS
但是这种情况无法正常工作。请提出解决此问题的任何解决方案。
check on fiddle
(18个回答)
7年前关闭。
我在IE11中遇到填充问题,我尝试使用IE特定语句(如)来控制CSS
<!--[if IE 11]>
<link rel="stylesheet" type="text/css" href="http:kin/frontend/enterprise/wyf-upgrade/css/styles-ie-11.css" media="all" />
<![endif]-->
但是这种情况无法正常工作。请提出解决此问题的任何解决方案。
最佳答案
试试这个对我有用
$(window).load(function() {
if(navigator.userAgent.match(/Trident.*rv:11\./)) {
$('body').addClass('ie11');
}
});
body.ie11 #some-other-div{
}
check on fiddle