【CSS】「word-spacing」プロパティ - 単語間の隙間を指定
【CSS】
「word-spacing」プロパティ - 単語間の隙間を指定
word-spacing - 単語間の隙間を指定
サンプルコード
word-spacing: normal;
word-spacing: 2em;
word-spacing: 200%;
word-spacing・letter-spacingの値一覧
normal | 自動調整。 |
length | 数値で指定。 |
percentage | 通常空白の幅を 100% としたパーセントで指定。 |
Back
letter-spacing - 文字間の隙間を指定
サンプルコード
letter-spacing: 10px;
Back
text-justify - 文章右端空白にならないように、単語間・文字間のスペースを調整
サンプルコード
text-justify: auto;
text-justify: none;
text-justify: inter-word;
text-justifyの値一覧
auto | 自動調整。(C3/e5.5) |
none | 調整なし。(C3) |
inter-word | 単語間のみで調整。 |
inter-ideograph | 単語間と文字間で調整。日本語 |
inter-cluster | 単語間と文字間で調整。アジア圏 |
kashida | 単語間と文字間で調整。アラビア語など |
newspaper | 単語間と文字間で調整。英語圏など。 |
distribute | 単語間と文字間(筆記体で繋がった文字を除く)で調整。タイ語など |
distribute-all-lines | 単語間と文字間で調整。段落の最後の行も調整。 |
distribute-center-last | |
Back
text-autospace - 表意文字(漢字)と非表意文字(半角英数字)の隙間を指定
サンプルコード
text-autospace: none;
text-autospace: ideograph-alpha;
text-autospace: ideograph-numeric;
text-autospace: ideograph-parenthesis;
text-autospace: ideograph-space;
text-autospace: ideograph-space ideograph-numeric ideograph-parenthesis ideograph-space;
text-autospaceの値一覧
none | 隙間なし。 |
ideograph-alpha | 表意文字とアルファベットの間に隙間を作成。 |
ideograph-numeric | 表意文字と数字の間に隙間を作成。 |
ideograph-parenthesis | 表意文字と括弧の間に隙間を作成。 |
ideograph-space | 表意文字と表意文字の間の隙間を広く。 |
Back
text-kashida-space - アラビア語などのテキスト配置を最善化
サンプルコード
text-kashida-space: 0%;
Back
word-wrap - テキストの自動改行の設定をする
word-wrap の値一覧
normal | 英単語途中での自動改行をしない。
|
break-word | 英単語途中でも自動改行する。 |
Back
writing-mode - 縦書きを設定
サンプルコード
writing-mode: lr-tb;
writing-mode: tb-rl;
writing-mode: horizontal-tb;
writing-mode: vertical-rl;
writing-mode: vertical-lr;
writing-modeの値一覧
lr-tb | 横書き(左→右)で上→下に改行します。left to right, top to bottom。 |
tb-rl | 縦書き(上→下)で右→左に改行します。top to bottom, right to left。 |
horizontal-tb | 横書きで上→下に改行します。 |
vertical-rl | 縦書きで右→左に改行します。 |
vertical-lr | 縦書きで左→右に改行します。 |
Back
direction - 文章の方向を設定
サンプルコード
direction: ltr;
direction: rtl;
directionの値一覧
ltr | left to right の略。左から右。英語、日本語など。 |
rtl | right to left の略。右から左。アラビア語など。 |
Back
unicode-bidi - 単語の並びを設定
サンプルコード
unicode-bidi: normal;
direction: rtl;
unicode-bidi: embed;
direction: rtl;
unicode-bidi: bidi-override;
unicode-bidiの値一覧
normal | 何も指定しないのと同様の動作。 |
embed | 単語の並びを direction の方向に並び替え。ただし、単語中の文字は適用外。 |
bidi-override | 単語の並び、単語中の文字の並びを direction の方向に並び替え。 |
isolate | 未稿。 |
plaintext | 未稿。 |
Back