CSSにおける各方向のマージン
異なる方向に異なるマージンを設定するために、
個別のプロパティが存在します:
margin-left - 左側用、margin-right
- 右側用、margin-top - 上側用、
margin-bottom - 下側用。
例を見てみましょう:
<div id="parent">
<div id="child"></div>
</div>
#parent {
width: 300px;
border: 1px solid red;
}
#child {
margin-top: 10px; /* 上 */
margin-right: 20px; /* 右 */
margin-bottom: 30px; /* 下 */
margin-left: 40px; /* 左 */
height: 100px;
border: 1px solid green;
}
:
以下の見本通りにページを作成してください:
以下の見本通りにページを作成してください:
以下の見本通りにページを作成してください: