top: ***; right: ***; bottom: ***; left: ***;
ブラウザ |
|
---|---|
プロパティ |
top、right、bottom、left は、ボックスの配置位置を指定するプロパティです。
この指定は、positionプロパティで relative
、absolute
、fixed
を指定している場合に有効となります。
div {
position: absolute;
top: 10px;
left: 30%;
}
プロパティ名 | 値 | 説明 |
---|---|---|
top |
数値+単位(px 等)またはパーセント | 上からの距離を指定 |
right |
数値+単位(px 等)またはパーセント | 右からの距離を指定 |
bottom |
数値+単位(px 等)またはパーセント | 下からの距離を指定 |
left |
数値+単位(px 等)またはパーセント | 左からの距離を指定 |
各プロパティの初期値は auto
(自動)です。