在另一个形状内创建一个形状

发布于 2024-11-03 16:43:42 字数 41 浏览 0 评论 0原文

我们可以创建矩形、圆形等形状。我们可以在另一个矩形内创建一个矩形吗?

We can create shapes like rectangle, circle etc. Can we create a rectangle inside another rectangle?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

养猫人 2024-11-10 16:43:43

您不能在另一个矩形内创建一个矩形。但你可以制作 2 个矩形来看起来像这样。

您使用;矩形的标签。通过查看规范中的矩形描述,您可以看到内容模型不允许包含另一个(或形状)。

您可以执行的操作示例:

<rect x="0" y="0" width="200" height="100"/>
<rect x="25" y="25" width="150" height="50"/>

您还可以添加围绕这两个矩形将它们分组,如下所示:

<g>
    <rect x="0" y="0" width="200" height="100"/>
    <rect x="25" y="25" width="150" height="50"/>
</g>

此处有更多说明: http:// www.w3.org/TR/SVG/struct.html#Groups

您还可以选择使用路径来仅使用一个标签绘制 2 个矩形。这一切都取决于您的需求。

You can't create a rectangle inside an other rectangle. But you can make 2 rectangles to look so.

You use the <rect> tag for rectangles. By looking at the rectangle description in the specifications, you can see that the content model don't allow <rect> to contain an other <rect> (or shape).

An example of what you can do :

<rect x="0" y="0" width="200" height="100"/>
<rect x="25" y="25" width="150" height="50"/>

You can also add a <g> around those two rectangles to group them, like this :

<g>
    <rect x="0" y="0" width="200" height="100"/>
    <rect x="25" y="25" width="150" height="50"/>
</g>

More explanations here : http://www.w3.org/TR/SVG/struct.html#Groups

You also have the alternative of using a path to draw 2 rectangles with only one tag. It all depend of your needs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文