大家好,我是 html5 和 svg 标签的新手。我想问一个关于 svg html 元素的问题。这是我的代码
<html>
<div>
<svg width = "1335" height = "400">
// I want to have two svg:g side by side one of more width and second of less width
such that width of svg = first g + second g
<g>
// All the elements inside g should have same width as g
</g>
<g>
</g>
</svg>
<div>
</html>
我已经尝试过使用转换。但失败了。是否可以并排放置两个 g 元素,因为我无法设置 g 的 x 和 y ?任何人都可以指导我以另一种方式做到这一点。