Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可能以某种方式将 html 框模型属性应用于 SVG 中的基本形状元素?例如应用于margin元素<rect>。我找到了不可能的解释:
margin
<rect>
display、float 和 flow 属性以及所有的 margin、padding、border 和 background 属性可以应用于顶级 svg 元素,但不能应用于其中的子元素。
但也许有一些技术可以使它成为可能?我想创建<rect>带边距的元素。
svg 中没有流布局,因此边距的概念必须以绝对值来完成(阅读:手动)。
更详细地解释您的用例?