<p>:段落元素
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
<p>
HTML 元素代表一個段落。在視覺媒體中,段落通常被表示為由空白行和/或首行縮排分隔的文本區塊,但 HTML 段落可以是任何相關內容的結構分組,例如圖片或表單字段。
段落是區塊級元素,特別是在解析了結束的 </p>
標記之前,如果解析了另一個區塊級元素,則段落會自動關閉。參見下面的「標籤省略」。
嘗試一下
屬性
此元素僅包含全域屬性。
備註: <p>
標籤上的 align
屬性已過時,不應使用。
範例
HTML
html
<p>
This is the first paragraph of text. This is the first paragraph of text. This
is the first paragraph of text. This is the first paragraph of text.
</p>
<p>
This is the second paragraph. This is the second paragraph. This is the second
paragraph. This is the second paragraph.
</p>
結果
設計段落樣式
預設情況下,瀏覽器使用單個空白行分隔段落。可以使用 CSS 實現其他分隔方法,例如首行縮排:
HTML
html
<p>
Separating paragraphs with blank lines is easiest for readers to scan, but
they can also be separated by indenting their first lines. This is often used
to take up less space, such as to save paper in print.
</p>
<p>
Writing that is intended to be edited, such as school papers and rough drafts,
uses both blank lines and indentation for separation. In finished works,
combining both is considered redundant and amateurish.
</p>
<p>
In very old writing, paragraphs were separated with a special character: ¶,
the <i>pilcrow</i>. Nowadays, this is considered claustrophobic and hard to
read.
</p>
<p>
How hard to read? See for yourself:
<button data-toggle-text="Oh no! Switch back!">
Use pilcrow for paragraphs
</button>
</p>
CSS
css
p {
margin: 0;
text-indent: 3ch;
}
p.pilcrow {
text-indent: 0;
display: inline;
}
p.pilcrow + p.pilcrow::before {
content: " ¶ ";
}
JavaScript
js
document.querySelector("button").addEventListener("click", (event) => {
document.querySelectorAll("p").forEach((paragraph) => {
paragraph.classList.toggle("pilcrow");
});
[event.target.innerText, event.target.dataset.toggleText] = [
event.target.dataset.toggleText,
event.target.innerText,
];
});
結果
可及性注意事項
技術概要
內容類型 | 流內容、捫及內容。 |
---|---|
允許的內容 | 段落型內容。 |
標籤省略 |
必須有起始標籤。如果 <p> 元素的結束標籤之後緊接著的是
<address> 、<article> 、<aside> 、<blockquote> 、<details> 、<div> 、<dl> 、<fieldset> 、<figcaption> 、<figure> 、<footer> 、<form> 、h1、h2、h3、h4、h5、h6、<header> 、<hgroup> 、<hr> 、<main> 、<menu> 、<nav> 、<ol> 、<pre> 、<search> 、<section> 、<table> 、<ul> 或另一個 <p> 元素,或者如果父元素中沒有更多內容,且父元素不是 <a> 、<audio> 、<del> 、<ins> 、<map> 、<noscript> 或 <video> 元素,或者是獨立的自定義元素,則可以省略結束標籤。
|
允許的父元素 | 任何接受流內容的元素。 |
隱含 ARIA 角色 | paragraph |
允許的 ARIA 角色 | 任何 |
DOM 介面 | HTMLParagraphElement |
規範
Specification |
---|
HTML Standard # the-p-element |
瀏覽器相容性
BCD tables only load in the browser