这是我的文件。
<svg
width="700"
height="500">
<g
id="layer1">
<text
style="font-size:100%;font-family:Bitstream Vera Sans"
x="6"
y="37"
id="">TEST</text>
</g>
</svg>
我希望TEST
以某种方式自动占据整个事物。
像100%的东西。
由于x和y纵坐标,现在文本被错过排列。
答案 0 :(得分:0)
尝试setting the viewBox
而不是特定的宽度和高度:
<svg viewBox="0 0 240 70">
<g id="layer1">
<text
style="font-size:100px;font-family:Bitstream Vera Sans"
x="0"
y="70"
id="">TEST</text>
</g>
</svg>
请注意Chrome has some rendering inconsistencies with SVG with no specific height。