最終更新日:
公開日:
リファレンス
CSS
テキスト インデント
text-indentプロパティ
テキストの開始位置を調整するプロパティです。
-
初期値
0
-
継承
継承あり
-
適用できる要素
ブロックコンテナ要素
値
値は任意の数値と単位(px、em、%)で指定します。マイナスの数値も指定可能です。
CSSコード例
.sample_css1 .text1 {
text-indent: 5em;
}
.sample_css1 .text2 {
text-indent: -20px;
}
.sample_css1 .text3 {
text-indent: 30%;
}
text-indentプロパティで「3em」を指定
text-indentプロパティで「-20px」を指定
text-indentプロパティで「30%」を指定