Answers for "add background overlay over background image"

CSS
4

add background overlay over background image

html {
  min-height:100%;
  background:linear-gradient(0deg, rgba(255, 0, 150, 0.3), rgba(255, 0, 150, 0.3)), url(http://lorempixel.com/800/600/nature/2);
  background-size:cover;
}
Posted by: Guest on January-25-2021
0

background image overlay

html {
  background:url(http://lorempixel.com/800/600/nature/2);
  background-size:cover;
  box-shadow:inset 0 0 0 2000px rgba(255, 0, 150, 0.3);
}
Posted by: Guest on March-23-2020

Code answers related to "add background overlay over background image"

Browse Popular Code Answers by Language