Created
February 2, 2018 03:51
-
-
Save jbd91/a3e9b1a16f83803efd6f266418f42d42 to your computer and use it in GitHub Desktop.
Overlay
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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