HTML abbr标记

HTML < abbr> 标记用于表示较长单词或短语的缩写或缩写, 例如www, HTML, HTTP等。< abbr> 标记之间编写的内容在某些浏览器中带有点划线。
该标记可以与“ title”属性(可选)一起使用, 并且当鼠标悬停在< abbr> 标记之间写入的内容时, 将会弹出title属性的值。
句法

< abbr title="HyperText Markup language"> HTML< /abbr>

以下是有关HTML < abbr> 标记的一些规范
Display Inline
开始日期/结束日期 开始标签和结束标签
Usage Semantic/Textual

带有标题属性:
< !DOCTYPE html> < html> < head> < title> Abbreviation Tag< /title> < /head> < body> < h2> Abbreviation tag example< /h2> < p> < b> Hover mouse over the content and see the abbreviation< /b> < /p> < abbr title="Hyper Text Transfer protocol"> HTTP< /abbr> < /body> < /html>

立即测试

没有标题属性:
< !DOCTYPE html> < html> < head> < title> Abbreviation tag< /title> < /head> < body> < h2> Abbreviation tag Example< /h2> < p> < abbr> CPU< /abbr> is brain of a Computer< /p> < /body> < /html>

立即测试
全局属性:
【HTML abbr标记】< abbr> 标记支持全局属性。
事件属性:
< abbr> 标记支持事件属性。
支持的浏览器
Element Chrome IE Firefox Opera Safari
< abbr> Yes Yes Yes Yes Yes

    推荐阅读