0

我有一个基本的 html 文件。在文件中,我有一个引用 SVG 文件的图像标签。当我在 IE10 中查看文件时,页面保持空白,而不是显示预期的矢量图像。SVG 文件是用 Inkscape 制作的。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<form id="form1" runat="server">
  <img src="Images/MyLOGO.svg" width="400"/>
  </form>
</body>
</html>

解决此问题的最佳方法是什么?

4

2 回答 2

0

一个原因可能是因为在 IE9+ 中,如果在单独的 CSS 文件中定义了样式表规则,Chrome 和 Safari 不会将样式表规则应用于 SVG。

于 2013-05-14T00:02:35.130 回答
0

The SVG file must have been invalid. I have replaced it with a different SVG file and all works as expected.

于 2013-05-14T15:01:39.720 回答