hanging-punctuation
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
hanging-punctuation
は CSS のプロパティで、区切り記号をテキストの行頭や行末にぶら下げるべきかどうかを指定します。ぶら下げられる区切り記号は行ボックスの外側に配置されれることがあります。
css
/* キーワード値 */
hanging-punctuation: none;
hanging-punctuation: first;
hanging-punctuation: last;
hanging-punctuation: force-end;
hanging-punctuation: allow-end;
/* 2 つのキーワード */
hanging-punctuation: first force-end;
hanging-punctuation: first allow-end;
hanging-punctuation: first last;
hanging-punctuation: last force-end;
hanging-punctuation: last allow-end;
/* 3 つのキーワード */
hanging-punctuation: first force-end last;
hanging-punctuation: first allow-end last;
/* グローバル値 */
hanging-punctuation: inherit;
hanging-punctuation: initial;
hanging-punctuation: revert;
hanging-punctuation: unset;
構文
hanging-punctuation
プロパティは 1 つ、2 つ、3 つの値で指定することができます。
-
値 1 つの構文は、下記の値リストのキーワード値のいずれか 1 つを使用します。
-
値 2 つの構文は、次のうち 1 つを使用します。
first
と併せて、last
,allow-end
,force-end
のいずれかlast
と併せて、first
,allow-end
,force-end
のいずれか
-
値 3 つの構文は、次のうち 1 つを使用します。
first
,allow-end
,last
first
,force-end
,last
値
公式定義
初期値 | none |
---|---|
適用対象 | すべての要素 |
継承 | あり |
計算値 | 指定通り |
アニメーションの種類 | 離散値 |
形式文法
例
開始と終了の引用符をぶら下げるよう設定
HTML
html
<p>
“Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur dignissim
nunc mauris, et sollicitudin est scelerisque sed. Praesent laoreet tortor
massa, sit amet vulputate nulla pharetra ut.”
</p>
CSS
css
p {
hanging-punctuation: first last;
margin: 0.5rem;
}
結果
仕様書
Specification |
---|
CSS Text Module Level 3 # hanging-punctuation-property |
ブラウザーの互換性
BCD tables only load in the browser