文章への書式を設定
CSSの書式設定
CSS | 設定 | サンプル |
color: | 文字色を指定する | color:#ff3333; |
font-size: | 文字サイズを指定する | font-size:1em |
font-weight: | 文字の太さを指定する | font-weight:bold; |
font-family: | フォントを指定する | font-family:sans-serif; |
text-align: | 水平方向の表示位置を指定する | text-align:right; |
line-height: | 行の高さを指定する | line-height:2; |
text-indent: | 1行目の字下げを指定する | text-indent:1em; |
letter-spacing: | 文字の間隔を指定する | letter-spacing:0.5em; |
writing-mode: | 組み方向 | writing-mode: horizontal-tb; |
font-style: | イタリック体 | font-style:italic; |
font-variant: | スモールキャピタルを指定する | font-variant: small-caps; |
text-decoration: | 文字の装飾を指定する | text-decoration: underline; |
text-transform: | 大文字と小文字を変換する | text-transform: capitalize; |
background-color | 背景色の設定 | background-color:#ff3333; |
border | 線の設定 | border-bottom: 2px solid #ff3333; |
margin | 余白の設定(要素の外への余白) | margin: 10px; margin-top:1em; margin-bottom:1em; margin-left:1em; margin-right:0.5em |
padding | パティング(要素の内側の余白) | padding:0.5em; padding-top:1em; padding-bottom:1em; padding-left:0.5em; padding-right:0.5em; |
カラーコード表 http://www5.plala.or.jp/vaio0630/hp/c_code.htm