HTML
HTML <main> 元素
使用 <main> 将文章列表包含起来
源代码:
点击运行 »
<main> <h1>网页浏览器</h1> <p>Google Chrome,Firefox 和 Internet Explorer 是当今最常用的浏览器。</p> <article> <h1>Google Chrome</h1> <p>Google Chrome 是由 Google 开发的免费开源网络浏览器,于 2008 年发布。</p> </article> <article> <h1>Internet Explorer</h1> <p>Internet Explorer 是微软 1995 年发布的免费网络浏览器。</p> </article> <article> <h1>Mozilla Firefox</h1> <p>Firefox 是 2004 年 Mozilla 发布的免费开源 Web 浏览器。</p> </article> </main>
运行结果:
点击运行 »