CSSテキスト

CSS

全体を小文字、大文字で表示させる [text-transform]

text-transform:uppercase すべての文字を大文字表示lowercase すべての文字を小文字表示capitalize 各単語の先頭の文字だけ大文字表示.sanple1{text-transform:uppercase}...
CSS

改行しないで表示させる [white-space:nowarap]

white-space:nowarap.sample{white-space:nowarap;}『吾輩は猫である』(わがはいはねこである)は、夏目漱石の長編小説。中学校の英語教師である珍野苦沙弥の家に飼われている猫である「吾輩」の視点から、...
CSS

改行や空白をそのまま表示 [white-space]

white-space:prediv{white-space:pre} var _U = "undefined"; var g_HttpRelativeWebRoot = "/ocom/"; var SSContributor = fals...
CSS

1行目のインデント [text-indent]

text-indent:インデント#sample{text-indent:1em}.sample{text-indent:50%}世の中は、君の理解する以上に栄光に満ちている。世の中は、君の理解する以上に栄光に満ちている。
CSS

文字間隔・単語間隔を設定する [letter-spacing]

letter-spacing:文字間隔word-spacing:単語間隔.sample{letter-spacing:0.5em}.sample{word-spacing:1.5em}世の中は、君の理解する以上に栄光に満ちている。世の中は、...
CSS

縦方向の位置を指定 [vertical-align]

vertical-align:縦方向の位置#top{vertical-align:top}#middle{vertical-align:middle}#bottom{vertical-align:bottom}#text-top{verti...
CSS

行揃えを指定 [text-align]

text-align:行揃え位置#sample1{text-align:left}#sample2{text-align:center}#sample3{text-align:right}
CSS

行間の設定 [line-height]

line-height:行の高さline-height:normal;line-height:1.2;line-height:150%