gpt4 book ai didi

html - 图形标签可以包含包裹图像的 anchor 标签吗?

转载 作者:太空狗 更新时间:2023-10-29 13:27:14 25 4
gpt4 key购买 nike

我正在尝试创建一个图形标签,其中包含一个包含图像的 anchor 标签。我想知道这种结构是否合法。这是显示我希望它如何工作的代码。

<figure>
<a href="/my-picture">
<img src="img/picture.jpg" alt="My picture">
</a>
<figcaption>
My picture
</figcaption>
</figure>

最佳答案

验证器说它是正确的结构,所以是的。

当谈到语义时,我没有发现任何问题,但请始终记住,在 HTML5 中,您可以将整个图形包装在一个链接中,这可能很有用,因为在大多数情况下您还想包装描述。

我用这个来验证:

<!DOCTYPE html>
<html>
<head>
<title>a</title>
</head>
<body>
<figure>
<a href="/my-picture">
<img src="img/picture.jpg" alt="My picture">
</a>
<figcaption>
My picture
</figcaption>
</figure>
</body>
</html>

关于html - 图形标签可以包含包裹图像的 anchor 标签吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28669852/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com