margin-bottom
margin-bottom は要素下辺の外側の余白(マージン)を指定します。
- 値
- 数値, auto
- 初期値
- 0
- 対象
- すべての要素
- 継承
- しない
- CSS レベル
- CSS 1
値の詳細
- 数値
- 数値 + px, em, % 等
- auto
- Web ブラウザが自動で余白を設定
div {
margin-bottom: 10px;
}
margin-bottom は要素下辺の外側の余白(マージン)を指定します。
div {
margin-bottom: 10px;
}