Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML <main> 标签


示例

指定文档的主要内容

<main>
  <h1>最流行的浏览器</h1>
  <p>Chrome、Firefox 和 Edge 是当今最常用的浏览器。</p>

  <article>
    <h2>Google Chrome</h2>
    <p>Google Chrome 是 Google 开发的网络浏览器,于 2008 年发布。Chrome 是当今世界上最流行的网络浏览器!</p>
  </article>

  <article>
    <h2>Mozilla Firefox</h2>
    <p>Mozilla Firefox 是 Mozilla 开发的开源网络浏览器。自 2018 年 1 月起,Firefox 一直是最流行的网络浏览器。</p>
  </article>

  <article>
    <h2>Microsoft Edge</h2>
    <p>Microsoft Edge 是 Microsoft 开发的网络浏览器,于 2015 年发布。Microsoft Edge 取代了 Internet Explorer。</p>
  </article>
</main>
亲自尝试 »

更多“亲自尝试”示例如下。


定义和用法

<main> 标签指定文档的主要内容。

<main> 元素中的内容应该对文档是唯一的。它不应该包含跨文档重复的任何内容,例如侧边栏、导航链接、版权信息、网站徽标和搜索表单。

注意:文档中不能有多个 <main> 元素。<main> 元素不能是 <article>、<aside>、<footer>、<header> 或 <nav> 元素的后代。


浏览器支持

表中的数字指定完全支持该元素的第一个浏览器版本。

元素
<main> 26.0 12.0 21.0 7.0 16.0

全局属性

<main> 标签还支持 HTML 中的全局属性


事件属性

<main> 标签还支持 HTML 中的事件属性



更多示例

示例

使用 CSS 样式化 <main> 元素

<html>
<head>
<style>
main {
  margin: 0;
  padding: 5px;
  background-color: lightgray;
}

main > h1, p, .browser {
  margin: 10px;
  padding: 5px;
}

.browser {
  background: white;
}

.browser > h2, p {
  margin: 4px;
  font-size: 90%;
}
</style>
</head>
<body>

<main>
  <h1>最流行的浏览器</h1>
  <p>Chrome、Firefox 和 Edge 是当今最常用的浏览器。</p>
  <article class="browser">
    <h2>Google Chrome</h2>
    <p>Google Chrome 是 Google 开发的网络浏览器,于 2008 年发布。Chrome 是当今世界上最流行的网络浏览器!</p>
  </article>
  <article class="browser">
    <h2>Mozilla Firefox</h2>
    <p>Mozilla Firefox 是 Mozilla 开发的开源网络浏览器。自 2018 年 1 月起,Firefox 一直是最流行的网络浏览器。</p>
  </article>
  <article class="browser">
    <h2>Microsoft Edge</h2>
    <p>Microsoft Edge 是 Microsoft 开发的网络浏览器,于 2015 年发布。Microsoft Edge 取代了 Internet Explorer。</p>
  </article>
</main>

</body>
</html>
亲自尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.