search
HomeWeb Front-endHTML TutorialHTML5标签嵌套规则_html/css_WEB-ITnose

× 目录 [1]分类 [2]子元素 [3]总结

前面的话

  在html5中,<a>元素的子元素可以是块级元素,这在以前是被认为不符合规则的。本文将详细介绍html5的标签嵌套规则

 

分类

  html5出现之前,经常把元素按照block、inline、inline-block来区分。在html5中,元素不再按照display属性来区分,而是按照内容模型来区分,分为元数据型(metadata content)、区块型(sectioning content)、标题型(heading content)、文档流型(flow content)、语句型(phrasing content)、内嵌型(embedded content)、交互型(interactive content)。元素不属于任何一个类别,被称为穿透的;元素可能属于不止一个类别,称为混合的。

 

  元数据元素(metadata content)是可以被用于说明其他内容的表现或行为,或者在当前文档和其他文档之间建立联系的元素

base link meta noscript script style template title

  流元素(flow content)是在应用程序和文档的主体部分中使用的大部分元素

a abbr address area(如果它是map元素的子元素) article aside audio b bdi bdo blockquote br button canvas cite code data datalist del dfn div dl em embed fieldset figure footer form h1 h2 h3 h4 h5 h6 header hr i iframe img input ins kbd keygen label main map mark math meter nav noscript object ol output p pre progress q ruby s samp script section select small span strong sub sup svg table template textarea time u ul var video wbr text

  区块型元素(sectioning content)是用于定义标题及页脚范围的元素

article aside nav section

  标题型元素(heading content)定义一个区块/章节的标题

h1 h2 h3 h4 h5 h6

  语句型元素(phrasing content)是用于标记段落级文本的元素

a abbr area (如果它是map元素的子级) audio b bdi bdo br button canvas cite code data datalist del dfn em embed i iframe img input ins kbd keygen label map mark math meter noscript object output progress q ruby s samp script select small span strong sub sup svg template textarea time u var video wbr text

  嵌入型元素(embedded content)是引用或插入到文档中其他资源的元素

audio canvas embed iframe img math object svg video

  交互型元素(interactive content)是专门用于与用户交互的元素

a audio(如果设置了controls属性) button embed iframe img(如果设置了usemap属性) input(如果type属性不为hidden) keygen label object(如果设置了usemap属性) select textarea video (如果设置了controls属性)

 

子元素

【1】子元素是流元素

<article>、<section>、<blockquote>、<li>、<dd>、<figcaption>、<div>、<main>、<td>

  【1.1】子元素是流元素,不包括

元素

<aside>、<nav>

  【1.2】子元素是流元素,但不包括

<table>元素

<caption>

  【1.3】子元素是流元素,但不包括

<form>元素

<form>

  【1.4】子元素是流元素,但不包括<header>、<footer>、<main>元素

<header>、<footer>、<main>

  【1.5】子元素是流元素,但不包括

<dt>、<th>

  【1.6】子元素是流元素,但不包括

<address>

  【1.7】子元素是一个

元素,紧跟着流元素

<figure>

  【1.8】子元素是一个元素,紧跟着流元素

<filedset>

 

【2】子元素是语句型元素

<h1>、<h2>、<h3>、<h4>、<h5>、<h6>、<p>、<pre class="brush:php;toolbar:false">、<em>、<strong>、<small>、<s>、<cite>、<q>、<abbr>、<data>、<time>、<code>、<var>、<samp>、<kbd>、<sub>、<sup>、<i>、<b>、<u>、<mark>、<bdi>、<bdo>、<span>、<input>、<output>、<legend>、<label>

  【2.1】子元素是语句型元素,但不包括和自身相同的元素

<dfn>、<progress>、<meter>

  【2.2】子元素是语句型元素,但不包括交互型元素(interactive content)

<button>

 

【3】子元素是transparent(以它的父元素允许的子元素为准)

<ins>、<del>、<map>

  【3.1】子元素是transparent(以它的父元素允许的子元素为准),但不包括交互型元素(interactive content)

<a>

  【3.2】子元素可以没有、可以是元素,也可以是transparent(以它的父元素允许的子元素为准)

<object>

 

【4】无子元素

<hr>、<br>、<wbr>、<img  alt="HTML5标签嵌套规则_html/css_WEB-ITnose" >、<embed>、<param>、<source>、<track>、<area>、<col>、<keygen>

  【4.1】子元素可以没有、可以是

  • 元素,也可以是<script>、<template>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;ol&gt;、&lt;ul&gt;</pre> <p>  【4.2】子元素可以没有、可以是<dt>和<dd>元素,也可以是<script>、<template>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;dl&gt;</pre> <p>  【4.3】子元素可以没有,可以是&lt;option&gt;、&lt;optgroup&gt;,也可以是<script>、<template>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;select&gt;</pre> <p>  【4.4】子元素可以没有,可以是&lt;option&gt;,也可以是<script>、<template>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;optgroup&gt;</pre> <p>  【4.5】子元素可以没有、可以是&lt;option&gt;元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;datalist&gt;</pre> <p>  【4.6】子元素可以没有、也可以是<track>元素,也可以是<source>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;audio&gt;、&lt;video&gt;</pre> <p>  【4.7】子元素可以没有,也可以是<col>、<template>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;colgroup&gt;</pre> <p>  【4.8】子元素可以没有,可以是&lt;tr&gt;,也可以是<script>、<template>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;tbody&gt;、&lt;thead&gt;、&lt;tfoot&gt;</pre> <p>  【4.9】子元素可以没有,可以是&lt;tr&gt;、<th>,也可以是<script>、<template>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;tr&gt;</pre> <p> <p>【5】子元素是&lt;caption&gt;、&lt;colgroup&gt;、<thead>、<tfoot>、<tbody>,也可以是<script>、<template>元素 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;table&gt;</pre> <p> <p>【6】子元素是文本内容 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;textarea&gt;</pre> <p>  【6.1】子元素可以没有,也可以是文本内容 <p class="sycode"> <pre class='brush:php;toolbar:false;'>&lt;option&gt;</pre> <p> <h3>总结 <p>   关于每个元素的详细嵌套规则,上部分已经详细介绍。这部分主要对常用标签的嵌套规则进行总结 <p>  [注意]将鼠标移动到深灰色背景的文字上,title将显示该元素所包含的标签 <p>【1】<h1>、<h2>、<h3>、<h4>、<h5>、<h6>、<p>的子元素是语句型元素 <p>【2】<header>、<footer>不可嵌套<header>、<footer> <p>【3】&lt;a&gt;的子元素是transparent(以它的父元素允许的子元素为准),但不包括交互型元素(interactive content) <p>【4】&lt;form&gt;不可嵌套&lt;form&gt; <p>【5】&lt;button&gt;子元素是语句型元素,不可嵌套交互型元素(interactive content) <p>【6】&lt;caption&gt;不可嵌套&lt;table&gt; <p>【7】&lt;dt&gt;、&lt;th&gt;不可嵌套<header>、<footer>、区块型元素(sectioning content)、标题型元素(heading content) <p class="sycode"> <p class="sycode"> <p class="sycode"> <p class="sycode"> <p class="sycode"> <p class="sycode"> <p class="sycode"> <p class="sycode"> </script>
  • Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Related Article
    Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

    The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

    How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

    This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

    How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

    The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

    What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

    The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

    What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

    Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

    What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

    The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

    What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

    The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

    How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

    This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    VSCode Windows 64-bit Download

    VSCode Windows 64-bit Download

    A free and powerful IDE editor launched by Microsoft

    MinGW - Minimalist GNU for Windows

    MinGW - Minimalist GNU for Windows

    This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

    PhpStorm Mac version

    PhpStorm Mac version

    The latest (2018.2.1) professional PHP integrated development tool

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.