0
我的SVG圖像在所有瀏覽器上都能正常工作,除了IE(驚喜...)。在Internet Explorer中縮小到容器的SVG圖像
這裏是我的測試頁:http://plnkr.co/edit/qmv9G3DGRlqDdi9ww58O?p=preview
正如你所看到的,顯示在第一SVG OK(即使在IE瀏覽器),但接下來的兩個不是。他們縮小到一個容器(在這種情況下表格 - > tr - > td)。
代碼:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<style>
/* this will be applied to the images */
.smallicon {
width: 16px;
padding: 5px;
}
</style>
</head>
<body>
<p>
Problem exists in Internet Explorer only
<br> This is fine:
</p>
<object class="smallicon icon-white" data="http://konradpapala.beep.pl/test/040__file_delete.svg" type="image/svg+xml"></object>
<table>
<thead>
<tr>
<th>This is not OK, unless we add style = 'width:20px;height:20px' to the td tag, BTW "normal" images, like .png work fine</th>
<th>This doesn't work either:</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img class='smallicon' src='http://konradpapala.beep.pl/test/040__file_delete.svg'>
</td>
<td>
<object class='smallicon' data = 'http://konradpapala.beep.pl/test/040__file_delete.svg' type="image/svg+xml"></object>
</td>
</tr>
</tbody>
</table>
</body>
</html>
任何想法?
順便說一句,我知道這個問題已經存在並被回答(SVG in img element proportions not respected in ie9),但是,解決方案根本無法工作 - 我沒有指定在我的SVG文件中的寬度和高度,而我有一個viewbox指定。
謝謝!我將「高度」屬性添加到.smallicon類,現在它工作正常,再次感謝! –