CSS

CSSタグの一覧

タグ
用途
color
文字の色を変更する
color: red;
background-color
背景色を変更する
background-color: lightblue;
font-family
フォントの種類を指定
font-family: Arial, sans-serif;
text-align
テキストの横位置(左寄せ、中央など)を指定
text-align: center;
margin
外側の余白を設定(要素の外)
margin: 20px;
font-size
文字の大きさを指定
font-size: 24px;
padding
内側の余白を設定(要素の内)
padding: 10px;
border
枠線を設定
border: 2px solid black;
width
要素の横幅を指定
width: 300px;
height
要素の高さを指定
height: 200px;