对于我正在研究的客户端项目,IE11中一直存在着巨大的SVG问题。我找到了修复程序,只想将特定样式应用于浏览器为IE11时使用。
我已经在Google上搜索并进行了大量的研究,但似乎没有任何效果。我可能编写的代码不正确,但是我尝试了多种变体,但似乎似乎无法解决它,因为我以前从未遇到过这个问题(我是初级)
/* IE10+ specific styles go here */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
svg { height: 2000px; }
svg { height: 3000px; }
}
_:-ms-fullscreen, :root .ie11up {
svg { height: 2000px; }
svg { height: 3000px; }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.ie11up {
svg { height: 2000px; }
svg { height: 3000px; }
}
}