HTML 标签列表

HTML <main> 主体部分标签

HTML <main> 标签用于表示<body> 标签的主要内容。

<main> 标签写在 <body> 标签内。它用于准确描述页面的主要内容。

主标签的内容与文档的中心主题直接相关。

HTML <main> 是一个新标签,在 HTML5 中引入。


要记住的要点:

作者不应在一个文档中包含多个 <main> 标签。

<main> 元素不应用作 <article>、<aside>、<header>、<footer> 或 <nav> 元素的子元素。

HTML 主标签及其子元素可以通过 CSS 轻松设置样式。



HTML 主标签示例

<!DOCTYPE>
<html>  
<body>  
<main>  
 <h2>Apples</h1>  
 <p>The apple is a red color pomaceous fruit of the apple tree. It is a very famous saying about apple.  
  </br> "An apple in a day, keeps the Doctor away".</p>  
 <article>  
  <h3>Red Delicious</h3>  
  <p>These bright red apples are the most common found in many supermarkets.</p>  
 </article>  
 <article>  
 <h3>Granny Smith</h3>  
 <p>These juicy, green apples make a great filling for apple pies.</p>  
 </article>  
</main>  
</body>  
</html>

<main> 标签还支持 HTML 5 中的全局属性和事件属性。


支持浏览器

元素ChromeIEFirefoxSafariOpera
<main>YesNoYesYesYes


  • 使用社交账号登录,本站支持
全部评论(0)