IE 文档模式 8 或以下不兼容 .svg 图片类型
IE document mode 8 or below is not compatible with .svg image type
我有一个文档必须与 IE 文档模式 8 兼容。html 文档有以下行
<meta content="IE=8" http-equiv="X-UA-Compatible">
现在我有一个 .svg 图像,我使用 css 文件显示如下,
background: url('../images/iPhoneAppStoreLogo.svg') no-repeat 0 0;
But this image is not displayed in IE Document mode 8 (Image is displayed in IE Document mode 9 and above).我看到解决方案说增加模式,但我的应用程序也需要支持 IE 文档模式 8。那么这个问题有什么解决办法吗
提前致谢
已知 IE .svg
存在一些问题。
建议在使用 .svg
时使用回退
检查这个tutorial,会对你有很大帮助。
我有一个文档必须与 IE 文档模式 8 兼容。html 文档有以下行
<meta content="IE=8" http-equiv="X-UA-Compatible">
现在我有一个 .svg 图像,我使用 css 文件显示如下,
background: url('../images/iPhoneAppStoreLogo.svg') no-repeat 0 0;
But this image is not displayed in IE Document mode 8 (Image is displayed in IE Document mode 9 and above).我看到解决方案说增加模式,但我的应用程序也需要支持 IE 文档模式 8。那么这个问题有什么解决办法吗
提前致谢
已知 IE .svg
存在一些问题。
建议在使用 .svg
时使用回退
检查这个tutorial,会对你有很大帮助。