Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created February 2, 2018 03:51
Show Gist options
  • Save jbd91/a3e9b1a16f83803efd6f266418f42d42 to your computer and use it in GitHub Desktop.
Save jbd91/a3e9b1a16f83803efd6f266418f42d42 to your computer and use it in GitHub Desktop.
Overlay
.div {
background-color: rgba(#000, 0.5);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
&:before {
content: '';
background-color: inherit;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment