如何在链接图像上实现title-attribute

时间:2013-01-03 10:54:29

标签: html xhtml

我想知道在链接图片上实现标题和alt的最佳方法是什么。

img-tag既可以有title属性,也有alt属性,a-tag只能有title属性。 链接图像时,实现title-attribute的最佳方法是什么? 我应该把它放在img和a-tag上,还是两个中的一个?

1 个答案:

答案 0 :(得分:1)

他们有不同的方法。 title-attribute为元素添加描述,alt-attribute表现为图像的替代文本表示。

<a href="..." title="Click here for more information about VanGogh">
    <img src="vangogh.png" alt="Famous painting of VanGogh" />
</a>