Detailed explanation of inline elements and block-level elements in commonly used HTML tags

Detailed explanation of inline elements and block-level elements in commonly used HTML tags

Block element HTML tag classification details

* address - address
* blockquote - block quote
* center - center alignment block
* dir - directory listing
* div - commonly used block level, also the main tag of css layout
* dl - definition list
* fieldset - form control group
* form - interactive form (can only be used to contain other block elements)
* h1 - Large title
* h2 - Subtitle
* h3 - Level 3 heading
* h4 - Level 4 heading
* h5 - Level 5 heading
* h6 - Level 6 heading
* hr - horizontal separator line
* isindex - input prompt
* menu - menu list
* noframes - frames optional content, (for browsers that do not support frames, this block content is displayed
* noscript - optional script content (displayed for browsers that do not support script)
* ol - sorting form
* p - paragraph
* pre - format text
* table - table
* ul - unordered list

Inline element HTML tag classification details

* a - anchor point
* abbr - abbreviation
* acronym - first letter
* b - bold (not recommended)
* bdo - bidi override
* big - large font
* br - line break
* cite - cite
* code - computer code (required when citing source code)
* dfn - defines the field
* em - emphasis
* font - font settings (not recommended)
* i - italic
* img - image
* input - input box
* kbd - defines keyboard text
* label - table label
*q - short quote
* s - hyphen (not recommended)
* samp - defines sample computer code
* select - item selection
* small - small font text
* span - commonly used inline container, defines the text block
* strike - a dash
* strong - bold emphasis
* sub - subscript
* sup - superscript
* textarea - multi-line text input box
* tt - Teletext
* u - underscore
* var - defines a variable

Variable elements HTML tag classification details

* applet - java applet
* button - buttons
* del - delete text
* iframe - inline frame
* ins - inserted text
* map - image block (map)
* object - object
* script - client script

Summarize:

1. Block-level elements such as div h1 p ul li will wrap and want to be displayed on the same line

Need to float or display: inline

2. Inline elements such as a span b can be displayed side by side. The default width setting does not work.

You need to set display: inline-block or block.

Summarize

The above is the editor's introduction to the inline elements and block-level elements in the commonly used HTML tags. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Summary of important components of MySQL InnoDB

>>:  Implementing a simple whack-a-mole game in JavaScript

Recommend

Detailed explanation of global parameter persistence in MySQL 8 new features

Table of contents Preface Global parameter persis...

Detailed example of using if statement in mysql stored procedure

This article uses an example to illustrate the us...

Collection of 25 fonts used in famous website logos

This article collects the fonts used in the logos...

The difference and usage of Ctrl+z, Ctrl+c and Ctrl+d in Linux commands

What does Ctrl+c, Ctrl+d, Ctrl+z mean in Linux? C...

MySQL binlog opening steps

Binlog is a binary log file that is used to recor...

8 essential JavaScript code snippets for your project

Table of contents 1. Get the file extension 2. Co...

Vant+postcss-pxtorem implements browser adaptation function

Rem layout adaptation The styles in Vant use px a...

Share 8 very useful CSS development tools

CSS3 Patterns Gallery This CSS3 pattern library s...

Difference between var and let in JavaScript

Table of contents 1. Scopes are expressed in diff...

JavaScript history object explained

Table of contents 1. Route navigation 2. History ...