中央に寄せるためにはmargin
の左右にauto
を指定する。
margin
にauto
を指定するときは必ずwidth
も併せて指定しましょう。
なお、上下のmargin
にauto
は指定できません。
style.css
.box {
width: 300px;
margin: 0 auto;
}
Go to list of users who liked
More than 3 years have passed since last update.
中央に寄せるためにはmargin
の左右にauto
を指定する。
margin
にauto
を指定するときは必ずwidth
も併せて指定しましょう。
なお、上下のmargin
にauto
は指定できません。
.box {
width: 300px;
margin: 0 auto;
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked