阅读(1013) (0)

HTML全局属性标题

2017-01-05 13:58:57 更新

HTML全局属性标题


title 属性提供有关元素的信息。它通常由浏览器使用来显示工具提示信息。

句法

<element title="text">

属性值

text
tooltip text

浏览器兼容性

title Yes Yes Yes Yes Yes

例子

<!DOCTYPE HTML>
<html>
<body>
    <a title="learn HTML and CSS" href="http://www.zijiebao.com">Visit  the  site</a>
</body>
</html>

Click to view the demo