LoginSignup
0
0

More than 5 years have passed since last update.

dialogタグでモーダル表示をしたときの背景色を変更する

Posted at

モーダルを実現する方法は色々ありますがdialogタグを使うと簡単です。(ただしchromeに限る)
ただ、デフォルトだと背景(オーバーレイ)の透明度が高すぎてイマイチ。
なので、CSSで背景色変えるのにはどうしたらいいのかなと。

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

::backdropという疑似CSSセレクタが使えました。

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