search
HomeWeb Front-endHTML TutorialWhat are html inline elements and block elements?

What are html inline elements and block elements?

Feb 20, 2021 pm 04:03 PM
htmlinline elementsblock element

htmlInline elements include: a (anchor element), b (bold), br (line break), code, em (emphasis), font (font setting), i (italic), img (picture ), input (input box), span, strong (bold emphasis), textarea, u, etc.; block elements include: address (address), blockquote (block quote), center (center-aligned block), div, h1~h6 (title), hr (horizontal dividing line), p, ul, ol, etc.

What are html inline elements and block elements?

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

Explanation on inline elements and block elements

According to the CSS specification, each web page element has a display attribute, which is used to determine the type of the element. , each element has a default display attribute value. For example, a div element has a default display attribute value of "block" and becomes a "block-level" element; while a span element has a default display attribute value of "inline". ”, called an “inline” element.

Block-level elements such as div will automatically occupy a certain rectangular space. You can adjust the appearance of this rectangle by setting attributes such as height, width, inner and outer margins; on the contrary, like "span" Inline elements like "a" do not have their own independent space. They exist attached to other block-level elements. Therefore, setting attributes such as height, width, and inner and outer margins on inline elements is invalid.

The difference between inline and block elements:

(1). Block-level elements will occupy an exclusive line, and their width will automatically fill the width of their parent element
Inline elements It will not occupy an exclusive line. Adjacent in-line elements will be arranged in the same line. They will not break until they cannot fit in one line. Their width changes with the content of the element
(2). In general, block-level elements can be set width, height attributes, inline elements set width, height invalid
(Note: even if the width of block-level elements is set, it still occupies an exclusive line)
(3). Block-level elements can set margin and padding. Inline elements The horizontal padding-left, padding-right, margin-left, and margin-right all produce margin effects, but the vertical padding-top, padding-bottom, margin-top, and margin-bottom do not produce edges. distance effect. (Valid in the horizontal direction, invalid in the vertical direction)

Block element (block element)

 * address - address

 * blockquote - block quote

* center - center-aligned block

* dir - directory list

* div - commonly used block level, also the main tag of css layout

* dl - Definition list

* fieldset - form control group

* form - interactive form

* h1 - 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 browsing that does not support frames The browser displays the content of this block

 * noscript - optional script content (this content is displayed for browsers that do not support script)

 * ol - sorting form

 * p - paragraph

* pre - formatted text

* table - table

* ul - non-sorted list

Inline element (inline element)

* a - anchor point

* abbr - abbreviation

* acronym - first word

* b - bold (not Recommended)

* bdo - bidi override

* big - large font

* br - line break

* cite - quote

* code - computer code (required when citing source code) * dfn - definition field

* em - emphasis

* font - font setting (not recommended)

* i - italic

* img - picture

* input - input box

* kbd - define keyboard text

* label - table label * q - short quote

* s - underscore (not recommended)

* samp - define sample computer code

* select - item selection

* small - small font text

* span - commonly used inline container, defining blocks within text

* strike - underline

* strong - bold emphasis

* sub - subscript

* sup - superscript

* textarea - multi-line text input box

 * tt - telex text

 * u - Underline   

 * var - Define variables   

Variable elements   

  Variable elements are determined based on the context. Be a block element or an inline element.

* applet - java applet

* button - button

* del - delete text

* iframe - inline frame

* ins - inserted text

* map - image block (map)

* object - object object

* script - client script

related Recommended: "html video tutorial"

The above is the detailed content of What are html inline elements and block elements?. For more information, please follow other related articles on the PHP Chinese website!

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
HTML vs. CSS vs. JavaScript: A Comparative OverviewHTML vs. CSS vs. JavaScript: A Comparative OverviewApr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The Role of HTML: Structuring Web ContentThe Role of HTML: Structuring Web ContentApr 11, 2025 am 12:12 AM

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

HTML and Code: A Closer Look at the TerminologyHTML and Code: A Closer Look at the TerminologyApr 10, 2025 am 09:28 AM

HTMLisaspecifictypeofcodefocusedonstructuringwebcontent,while"code"broadlyincludeslanguageslikeJavaScriptandPythonforfunctionality.1)HTMLdefineswebpagestructureusingtags.2)"Code"encompassesawiderrangeoflanguagesforlogicandinteract

HTML, CSS, and JavaScript: Essential Tools for Web DevelopersHTML, CSS, and JavaScript: Essential Tools for Web DevelopersApr 09, 2025 am 12:12 AM

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

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)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.