LoginSignup
0
0

More than 5 years have passed since last update.

ボックスを真ん中に配置する方法(忘備録メモ)

Last updated at Posted at 2018-04-25
.createForm__content {
  position: absolute;
  left: 50%;
  width: 720px;
  margin-left: -360px;
  background: #f4f4f4;
  box-sizing: border-box;
  border-radius: 4px;
}

leftを50%に移動させ、
widthの半分の長さをmargin-leftに指定する。

アドバイスいただきました。↓
margin-left: -360px;の代わりにtransform: translateX(-50%);を使用する。

CSS3が使えて要素の幅が決まっていない場合には後者を使用するのがベスト。

0
0
2

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
0