The difference between alt and title in HTML

<a href="www.baidu.com"><img  src="./btn_back.gif" width="120" height="30" border="0" alt="返回" style="cursor: hand;"> </a>

The above code cannot display the "return" in alt when it is executed, but replacing it with title can display "return" when the mouse is placed on the picture.

alt: Alt is to display the content in atl when the image does not exist or the image is not fully loaded. If it has been loaded, then the content will not be seen

title: title can be displayed after the content of the picture is completely loaded


Guess you like

Origin blog.csdn.net/limin322/article/details/79257210