* address - address
* blockquote - block quote
* center - center alignment block
* dir - directory listing
* div - commonly used block level is also the main tag of css layout
* dl - definition list
* fieldset - form control group
* form - interactive form (can only be used to accommodate other block elements)
* h1 - Headline
* h2 - subtitle
*h3 - Level 3 heading
* h4 - Level 4 heading
*h5 - Level 5 heading
*h6 - Level 6 heading
*hr - horizontal divider
* isindex - input prompt
*menu - menu list
* noframes - frames optional content, (display this block content for browsers that do not support frames
* noscript - optional script content (displayed for browsers that do not support script)
*ol - sort form
* p - paragraph
* pre - formatted text
* table - table
*ul - unsorted list
Inline element (inline element) HTML tag classification details* a - anchor point
*abbr - abbreviation
*acronym - initial word
* b - bold (not recommended)
* bdo - bidi override
* big - big font
* br - line break
*cite - quote
* code - computer code (required when citing source code)
* dfn - define fields
* em - emphasis
* font - font settings (not recommended)
* i - italic
* img - image
* input - input box
*kbd - define keyboard text
* label - table label
*q - short quote
* s - dash (not recommended)
* samp - defines sample computer code
* select - item selection
* small - small font text
* span - commonly used inline container to define blocks within text
* strike - center line
*strong - Bold emphasis
* sub - subscript
* sup - superscript
* textarea - multi-line text input box
*tt - telex text
* u - underscore
*var - define variables
Variable element HTML tag classification details* applet - java applet
* button - button
* del - delete text
* iframe - inline frame
* ins - inserted text
* map - image block (map)
* object - object object
* script - client script
Summarize: 1. Block-level elements such as div h1 p ul li, etc. will wrap and want to be displayed on the same line.Need to float or display: inline
2. Row-level elements inline, such as a span b, can be displayed side by side. The default setting width does not work.You need to set display: inline-block or block.
SummarizeThe above is the inline elements and block-level elements commonly used in HTML tags introduced by the editor to you. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for your support of the VeVb martial arts website!