用于IE 11.0兼容性的用户代理标记

时间:2014-01-13 17:46:09

标签: html css compatibility user-agent internet-explorer-11

我有一个网站,其中包含此代码的HTML

Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)

我有以下css

html[data-useragent*='MSIE 10.0'] #flexslider {
    margin-top: 0;
    position: relative;
    top: -244px;
}

所以事实是,上面的ID在IE10中工作正常,并且在IE 11上不起作用。 我应该在我的网站上添加什么代码来支持IE 11?

1 个答案:

答案 0 :(得分:0)

试试这个:

html[data-useragent*='rv:11.0'] #flexslider {
    margin-top: 0;
    position: relative;
    top: -244px;
}