0
0

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.

IE11でbootstrap4のModalの.modal-dialog-centered が効かない対策(CSSのみ)

Posted at

本家でも把握されてるのでいつか対策されると思いますので、暫定的な対策としてCSSだけ解決する方法です

.modal-dialog-centered {
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  height: calc(100% - (.5rem * 2));
}

@media (min-width:576px) {
  .modal-dialog-centered {
    height: calc(100% - (1.75rem * 2));
  }
}

IE11のflexboxの縦方向が中央によらないバグに対応すれば直りました。
min-heightの指定はそのまま残してても大丈夫です。

参考サイト)

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?