--- title: 區塊級元素 slug: Web/HTML/Block-level_elements translation_of: Web/HTML/Block-level_elements ---

HTML (超文字標記語言, Hypertext Markup Language) 元素通常為 "區塊級" 元素或是 "行內" 元素。 一個區塊級元素會藉由建立"區塊"的動作, 完全佔滿其父元素(容器)的空間。本文將為您說明其意涵.

瀏覽器預設以在元素前後換行的方式, 表現區塊級元素. 視覺上會呈現為一排縱向堆疊的方塊。

區塊級元素必定以換行方式, 取得完整寬度的空間(向左右兩側儘可能地延伸出去)。

以下範例將展示區塊級元素的影響:

區塊級元素

HTML

<p>This paragraph is a block-level element; its background has been colored to display the paragraph's parent element.</p>

CSS

p { background-color: #8ABB55; }

{{ EmbedLiveSample('Block-level_Example') }}

用法

區塊級 vs. 行內元素

There are a couple of key differences between block-level elements and inline elements:

Formatting
By default, block-level elements begin on new lines, but inline elements can start anywhere in a line.
Content model
Generally, block-level elements may contain inline elements and other block-level elements. Inherent in this structural distinction is the idea that block elements create "larger" structures than inline elements.

The distinction of block-level vs. inline elements is used in HTML specifications up to 4.01. In HTML5, this binary distinction is replaced with a more complex set of content categories. The "block-level" category roughly corresponds to the category of flow content in HTML5, while "inline" corresponds to phrasing content, but there are additional categories.

相關元素

The following is a complete list of all HTML block level elements (although "block-level" is not technically defined for elements that are new in HTML5).

{{ HTMLElement("address") }}
Contact information.
{{ HTMLElement("article") }} {{ HTMLVersionInline(5) }}
Article content.
{{ HTMLElement("aside") }} {{ HTMLVersionInline(5) }}
Aside content.
{{ HTMLElement("blockquote") }}
Long ("block") quotation.
{{ HTMLElement("canvas") }} {{ HTMLVersionInline(5) }}
Drawing canvas.
{{ HTMLElement("dd") }}
Describes a term in a description list.
{{ HTMLElement("div") }}
Document division.
{{ HTMLElement("dl") }}
Description list.
{{ HTMLElement("dt") }}
Description list term.
{{ HTMLElement("fieldset") }}
Field set label.
{{ HTMLElement("figcaption") }} {{ HTMLVersionInline(5) }}
Figure caption.
{{ HTMLElement("figure") }} {{ HTMLVersionInline(5) }}
Groups media content with a caption (see {{ HTMLElement("figcaption") }}).
{{ HTMLElement("footer") }} {{ HTMLVersionInline(5) }}
Section or page footer.
{{ HTMLElement("form") }}
Input form.
{{ HTMLElement("h1") }}, {{ HTMLElement("h2") }}, {{ HTMLElement("h3") }}, {{ HTMLElement("h4") }}, {{ HTMLElement("h5") }}, {{ HTMLElement("h6") }}
Heading levels 1-6.
{{ HTMLElement("header") }} {{ HTMLVersionInline(5) }}
Section or page header.
{{ HTMLElement("hgroup") }} {{ HTMLVersionInline(5) }}
Groups header information.
{{ HTMLElement("hr") }}
Horizontal rule (dividing line).
{{ HTMLElement("li") }}
List item.
{{ HTMLElement("main") }}
Contains the central content unique to this document.
{{ HTMLElement("nav") }}
Contains navigation links.
{{ HTMLElement("noscript") }}
Content to use if scripting is not supported or turned off.
{{ HTMLElement("ol") }}
Ordered list.
{{ HTMLElement("output") }} {{ HTMLVersionInline(5) }}
Form output.
{{ HTMLElement("p") }}
Paragraph.
{{ HTMLElement("pre") }}
Preformatted text.
{{ HTMLElement("section") }} {{ HTMLVersionInline(5) }}
Section of a web page.
{{ HTMLElement("table") }}
Table.
{{ HTMLElement("tfoot") }}
Table footer.
{{ HTMLElement("ul") }}
Unordered list.
{{ HTMLElement("video") }} {{ HTMLVersionInline(5) }}
Video player.


參閱