我知道 Internet Explorer 不能很好地处理 SVG。我注意到当更改display: block
为do 时display: flex
会减小间隙的大小。但是它不会删除它。
我正在声明height
和width
样式,但问题似乎在 IE 11 中仍然存在
// Declarations
.o-navigation {
align-items: center;
display: flex;
@include font-smooth;
padding: (.5 * $spacing-base) $spacing-base;
.logo-access {
.icon-logo-full {
width: 135px;
height: 23px;
display: block;
@media screen and (min-width: $screen-desktop) {
.home & {
width: 270px;
height: 45px;
}
}
}
}
}
问题可能来自哪里?