属性名 | text-transform |
---|---|
値 | none | [ [ capitalize | uppercase | lowercase ] || full-width || full-size-kana ] |
初期値 | none |
適用可能要素 | すべての要素 |
継承 | 継承する |
メディア | Visual / Text |
サポート | C1 / e6 / N6 / Fx1 / Ch1 / Op3.5 / Sa1 |
テキストに影をつけます。
値 | 説明 |
---|---|
none | 変換しません。 |
capitalize | 各単語の先頭文字を大文字にします。(C1/e6/N6/Fx1/Ch1/Op3.5/Sa1) |
uppercase | すべての文字を大文字にします。(C1/e6/N6/Fx1/Ch1/Op3.5/Sa1) |
lowercase | すべての文字を小文字にします。(C1/e6/N6/Fx1/Ch1/Op3.5/Sa1) |
full-width | すべての文字を全角文字にします。(C3) |
full-size-kana | 半角カナを全角カナに変換します。(C3) |
<h5>none</h5> <div style="text-transform:none"> I have a dream that one day this nation will rise up and ... </div> <h5>capitalize</h5> <div style="text-transform:capitalize"> I have a dream that one day this nation will rise up and ... </div> <h5>uppercase</h5> <div style="text-transform:uppercase"> I have a dream that one day this nation will rise up and ... </div> <h5>lowercase</h5> <div style="text-transform:lowercase"> I have a dream that one day this nation will rise up and ... </div> <h5>full-width</h5> <div style="text-transform:full-width"> I have a dream that one day this nation will rise up and ... </div> <h5>full-size-kana</h5> <div style="text-transform:full-size-kana"> アイハブアドリーム ザットワンディ ディスネイション ウィル レイズアップ... </div>