我正在处理 SVG 文件中 xml 元素的高度和宽度。似乎唯一的方法是改变高度和宽度属性。这是因为 XML 元素无法识别 CSS 和 DOM 属性。
是否有可以使用 Javascript/CSS 编写/样式化的 XML 元素的高度和宽度属性?
编辑:http: //jsfiddle.net/David_Knowles/ZYhSm/
<svg>
<!-- shortend -->
<g id="v-bars">
<rect class="light" x="67" y="0" width="59.858" height="309.522"/>
<rect class="dark" x="135.021" y="0" width="59.858" height="276.484"/>
<rect class="light" x="203.041" y="0" width="59.857" height="227.168"/>
<rect class="dark" x="271.061" y="0" width="59.858" height="201.097"/>
<rect class="light" x="339.082" y="0" width="59.857" height="140.743"/>
<rect class="dark" x="407.102" y="0" width="59.857" height="295.851"/>
<rect class="light" x="475.121" y="0" width="59.859" height="321.301"/>
<rect class="dark" x="543.143" y="0" width="59.857" height="165.981"/>
</g>
</svg>