ホームページ  >  記事  >  ウェブフロントエンド  >  メインタグ_html/css_WEB-ITnose

メインタグ_html/css_WEB-ITnose

WBOY
WBOYオリジナル
2016-06-24 11:47:501496ブラウズ

main

main タグは、ドキュメントのメインコンテンツを指定します。
メイン要素のコンテンツはドキュメントに固有である必要があります。サイドバー、ナビゲーション バー、著作権情報、サイトのロゴ、検索フォームなど、ドキュメント全体で繰り返し表示されるコンテンツを含めないでください。
注: ドキュメント内に複数の主要要素を含めることはできません。 main 要素は、article、side、footer、header、または nav の子孫であってはなりません。

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><title>Using main</title></head><body><header>My page</header><nav>	[url=#]Home[/url]</nav><main>	<article>		<h1>My article</h1>		Content	</article>	<aside>		More information	</aside></main><footer>Copyright 2013</footer></body></html>

別の例:

<h1>Skateboards</h1>  The skateboard is the way cool kids get around  <article>  <h2>Longboards</h2>  Longboards are a type of skateboard with a longer   wheelbase and larger, softer wheels.  ...   ...   </article>  <article>  <h2>Electric Skateboards</h2>  These no longer require the propelling of the skateboard  by means of the feet; rather an electric motor propels the board,   fed by an electric battery.  ...   ...   </article>  </main>  <!-- other content -->  

main タグは HTML 5 で新しく追加されました

main 要素

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。