html title 属性多行显示

来源:互联网 发布:广联达电子投标软件 编辑:程序博客网 时间:2024/06/06 11:41

html global attribute title displays in multiple lines

下面的代码段主要是展现了4种方式让 title 属性的多行展示,经测试,至少兼容到了 ie8

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta http-equiv="X-UA-Compatible" content="ie=edge">    <title>html global attribute title displays in multiple lines </title></head><body>    <p>Newlines in title should be taken into account,like this        <abbr title="This is an example        multiline title">example</abbr>.</p>    <p>Newlines in title should be taken into account,like this        <mark title="This is an example&#10multiline title">example</mark>.</p>    <p>Newlines in title should be taken into account,like this        <span title="This is an example&#13multiline title">example</span>.</p>    <p>Newlines in title should be taken into account,like this        <span title="This is an example&#xdmultiline title">example</span>.</p></body></html>

展示图片效果:
这里写图片描述

原创粉丝点击