Home Web Front-end HTML Tutorial What is the difference between div tag, section tag and acticle tag in HTML?

What is the difference between div tag, section tag and acticle tag in HTML?

Jan 05, 2021 am 10:27 AM
div html section

What is the difference between div tag, section tag and acticle tag in HTML?

Introduction:

I originally thought that these three tags have similar functions. Later, after checking the relevant information, I realized that there are differences between them. .

(Learning video sharing: html video tutorial)

Let’s introduce the differences between them:

1. div element:

It does not have any semantics. It is used as a layout and styling tag to define partitions or sections in the document, which is equivalent to a container. It is mainly used as a large frame layout, which means that the skeleton of the web page is mainly built through div, while the flesh and blood of the web page is completed by elements such as span, p or ul.

2. Section element: The

section element is a newly added structural element in HTML5, which has further semantics. Represents a content block in the page, such as a chapter, header, footer, or other part of the page. It can be used in combination with h1, h2, h3, h4, h5, h6 and other elements to mark the document structure.

3. Article element:

The article element is also a newly added structural element in HTML5. a is a special section tag, which has clearer semantics than section. It represents an independent, complete block of related content that represents a piece of independent content on the page that is not related to the top and bottom, such as an article in a blog.

Note: The article element can be nested, and the inner content needs to be associated with the outer content in principle. For example, in a blog post, comments on the article can be nested using article elements; the article element used to present the comments is included in the article element that represents the overall content. The nested code is as follows:

<article>

	<header>
		<h1>article元素的嵌套使用</h1>
		<p>发表日期:<time pubdate="pubdate">2019/8/6</time></p>
	</header>

	<p>此标签里显示的是article整个文章的主要内容,下面的section元素里是对该文章的评论</p>

	<section>
		<h2>评论</h2>
		<article>
			<header>
			
				<h3>发表者:Cherish599</h3>
				<p>1小时前</p>
				</header>
		
			<p>这篇文章很不错啊,顶一下!</p>
		</article>
	
		<article>
			<header>
			
				<h3>发表者:兩個西柚</h3>
				<p>2小时前</p>
				</header>
		
			<p>这篇文章真棒,对article的嵌套解释的很详细</p>
			</article>
	</section>
</article>
Copy after login

Summary:

The semantics of div, section, and article are created from scratch and gradually enhanced. div has no semantics and is only used as a styled or scripted tag. For a piece of thematic content, section is applicable, and if the content can be separated from the context and used as a complete and independent piece of content, article is applicable. In principle, when you can use article, you can also use section, but in fact, if using article is more appropriate, then don’t use section.

Related recommendations: html tutorial

The above is the detailed content of What is the difference between div tag, section tag and acticle tag in HTML?. For more information, please follow other related articles on the PHP Chinese website!

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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

See all articles