0
爲什麼在SVG元素上設置viewbox屬性會弄亂高度並導致溢出?我怎樣才能防止呢?SVG ViewBox Breaks高度
.parent {
width: 500px;
height: 500px;
background-color: green;
display: flex;
flex-direction: column;
}
.child {
flex-grow: 1;
background-color: yellow;
margin: 10px;
}
<div class="parent">
<h1>testa</h1>
<div class="child">
<svg viewbox="0 0 40 40">
<rect x="10" y="10" width="30" height="30" fill="red" />
</svg>
</div>
</div>
如果你想防止溢出顯示你可以添加'overflow-y:hidden'到**。parent ** div。 – Arthur
我寧願如果svg不佔用太多空間,而是縮放其內容。 – Henning
這也會發生在圖像上,它並不是SVG和viewBox屬性的使用。 – hungerstar