LoginSignup
22
15

More than 5 years have passed since last update.

modalを画面中央に表示させる書き方

Posted at
a.scss
$modal-width: 670px;
.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  width: $modal-width;
  margin-left: -($modal-width / 2);
}

widthを決め打ち + position leftt 50%で描画しておき, margin-leftでwidthの半分だけ左にずらす

22
15
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
22
15