0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

絶対配置で中央寄せにする方法

Posted at

絶対配置の場合、margin 0 auto では、中央揃えにならないので、
どうすれば良いか、試行錯誤していたら、やっと中央揃えができたので、
備忘録として、記録しておく。

  <section class="modal"></section>

.modal {
 position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

left rightとそれぞれ0にする

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?