絶対配置の場合、margin 0 auto では、中央揃えにならないので、
どうすれば良いか、試行錯誤していたら、やっと中央揃えができたので、
備忘録として、記録しておく。
<section class="modal"></section>
.modal {
position: absolute;
top: 40px;
left: 0;
right: 0;
margin: 0 auto;
}
left rightとそれぞれ0にする
Go to list of users who liked
More than 5 years have passed since last update.
絶対配置の場合、margin 0 auto では、中央揃えにならないので、
どうすれば良いか、試行錯誤していたら、やっと中央揃えができたので、
備忘録として、記録しておく。
<section class="modal"></section>
.modal {
position: absolute;
top: 40px;
left: 0;
right: 0;
margin: 0 auto;
}
left rightとそれぞれ0にする
Register as a new user and use Qiita more conveniently
Go to list of users who liked