html5 main标签是什么意思?html5 main标签作用又有哪些?本篇文章主要讲了html5 main标签的定义及其具体的作用,还有关于html5 main标签的使用详细说明。
首先,我们来了解一下html main是什么意思:
html5 main标签的定义和作用:
注释:在一个文档中,不能出现一个以上的
早在 2013 年,
W3C 规范
W3C 规范将
文档或应用程序的主要内容。主内容区域由与文档的中心主题或应用的核心功能的直接相关或扩展的内容组成。
自从
The body element represents the content of the document.
html5 main标签具体使用的作用:
使用
按照规格,如果你在一个文档中试图使用多个
html5 main标签的具体使用:
就像其它的 HTML5 新元素一样,并不是所有的浏览器都能够识别出
main {display:block;}
有的时候,为了支持一些较低版本的 IE 浏览器,你可能还需要使用 JavaScript 创建该元素。
<script type="text/javascript">document.createElement('main');</script>
当然了,你还可以使用 html5shiv.
使用 所以,在实践中它应该是什么样子呢?下面是使用 下面使用 好了,这是如此的简单,以至于一分钟不到我们就可以将文档改写成新潮的 HTML5 样式。 【相关推荐】 html textarea是什么意思?如何获取textarea标签中的换行符和空格? Atas ialah kandungan terperinci html5 main标签是什么意思?html5 main标签作用的详细介绍. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!<header>Header</header>
<div id="content">Main Content</div>
<footer>Footer</footer>
<header>Header</header>
<main id="content">Main Content</main>
<footer>Footer</footer>