我在Internet Explorer中遇到SVG扩展问题。
在Chrome中,它看起来像这样:
但在Internet Explorer中它看起来像这样:
HTML:
<header id="topbar">
<div id="wrapper">
<div id="logo">
<a href="/">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="64.2 25.7 158 49.9" style="width: 100%; enable-background:new 64.2 25.7 158 49.9;" xml:space="preserve"></svg>
</a>
</div>
</header>
CSS:
#topbar {
width: 100%;
max-width: 200px;
height: 150px;
margin: auto;
overflow: hidden;
background: red;
}
#topbar #wrapper {
width: 100%;
height: 100%;
display: table;
}
#topbar #wrapper #logo {
width: 100%;
display: table-cell;
vertical-align: middle;
}
#topbar #wrapper #logo svg {
height: 50%;
background: blue;
}
有没有做一些特别的事情可以快速解决这个问题吗?
答案 0 :(得分:0)
尝试这似乎对我有用
#topbar #wrapper #logo a {
display: block;
width: 100%;
height: 50%;
background: blue;
}