Can HTML tags be nested?

WBOY
Release: 2022-03-28 14:18:38
Original
3164 people have browsed it

HTML tags can be nested. The nesting rules in HTML are: 1. Block elements can contain inline elements or certain block elements, but inline elements cannot contain block elements; 2. Block-level elements cannot be placed inside p elements; 3. h1, h2, h3, h4, h5, h6, p and dt elements can only contain inline elements and can no longer contain block-level elements.

Can HTML tags be nested?

The operating environment of this article: Windows 10 system, html5 version, Dell G3 computer.

Can HTML tags be nested?

Can HTML tags be nested?

The general rules for tag nesting are as follows:

1. Block tags Inline tags can be nested, block tags may not be able to nest block tags (for example, p tags cannot nest other block tags), and inline tags cannot nest blocks (there is a special case of a tag, which can nest divs):

<div>
    <span></span>
    <a href="#"></a>
</div>
Copy after login

Block nested block example:

<div>
    <div></div>
</div>
Copy after login

2. Block-level elements cannot be placed inside p elements

Special cases (error examples :

      <p>
        <div></div>
      </p>
Copy after login

The a tag is very special. It can nest divs and inline tags, but it cannot nest itself ().

3. How many A special block-level element can only contain inline elements and cannot contain block-level elements. These special tags are: h1, h2, h3, h4, h5, h6, p, dt

Block-level elements are juxtaposed with block-level elements, inline elements are juxtaposed with inline elements:

<a href="#">
    <div></div>
</a>
Copy after login
Recommended tutorial: "html video tutorial

"

The above is the detailed content of Can HTML tags be nested?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template