是否可以在SVG标签上指定viewBox属性?
我尝试了view-box,viewbox和viewBox,但都没有应用。
#myRectangle {
viewbox:0 0 1000 1000;
width:100;
height:100;
}
<svg id="myRectangle"
xmlns="http://www.w3.org/2000/svg" version="1.1">
<rect x="10" y="10" width="100" height="100"
fill="red" stroke="navy" stroke-dasharray="2" stroke-width="4" />
</svg>