带有图片和文字的链接 - 合并还是分开?
Links with images and text - combined or separate?
为了可访问性目的,在链接与几个简短文字相关的图像时,将链接单独放置还是一起放置更好?
在一起:
<a href="to.html"><img src="">Go to this page</a>
分开:
<a href="to.html"><img src=""></a><a href="to.html">Go to this page</a>
(假设我们将其他可访问性参数放在一边 - 如 alt
属性等)
将它们合并为一个 link。是否给非空图片加上alt属性,取决于图片是否已经被文字描述。
为了可访问性目的,在链接与几个简短文字相关的图像时,将链接单独放置还是一起放置更好?
在一起:
<a href="to.html"><img src="">Go to this page</a>
分开:
<a href="to.html"><img src=""></a><a href="to.html">Go to this page</a>
(假设我们将其他可访问性参数放在一边 - 如 alt
属性等)
将它们合并为一个 link。是否给非空图片加上alt属性,取决于图片是否已经被文字描述。