aside标签

来源:互联网 发布:jo抢购软件 编辑:程序博客网 时间:2024/06/05 10:09

aside标签定义其所处内容之外的内容,aside 的内容应该与附近的内容相关。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>html5特性</title>
</head>
<body>
<p>html5</p>
<aside>
<h1>关于html5的解释</h1>
<p>html5是下一代的html</p>
</aside>
</body>
</html>