gpt4 book ai didi

html - 可访问用户的链接内的图像

转载 作者:行者123 更新时间:2023-12-03 15:51:18 25 4
gpt4 key购买 nike

假设我想制作一个可点击的图像(比如网站 Logo 或其他),如下所示:

<a href="theblablasite.com"><img src="logo_or_whatever.png"></a>

如果我想让它可以访问,我应该使用 aria-label链接以及 alt用于图像或仅 aria-label ?

此外,关于是否一起使用 title 和 alt 有很多意见,什么是正确的方法,为什么?

最佳答案

HTML standard说:

The alt attribute must be specified for the IMG



此外,我在生产中经常看到的是为视觉用户提供了一个用 CSS 隐藏但屏幕阅读器会大声朗读的辅助文本元素。更多信息在这里 https://www.w3.org/TR/WCAG20-TECHS/C7.html

因此,在您的示例中,您可能会这样做:
<a href="theblablasite.com"><img src="logo_or_whatever.png" alt="Relevant info here"><span class="assitive-text">Relevant info here...</span></a>

.assistive-text { height: 1px; width: 1px; position: absolute; overflow: hidden; top: -10px; }

该 CSS 来自上述 W3 引用。

关于html - 可访问用户的链接内的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35202809/

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