LoginSignup
1
0

More than 5 years have passed since last update.

cssで背景画像を暗くする

Posted at

背景画像を画像を加工せずにCSSで加工する。

ex.css

body:before {
  content: "";
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0; 
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

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