Last active
August 4, 2017 12:28
-
-
Save mercer08/b29aa2d581d7c5212fb73e8e83353778 to your computer and use it in GitHub Desktop.
通过阴影来弱化背景(rgba) CSS SECRET
This file contains 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
.overlay{ /*用于遮挡背景*/ | |
position: fixed; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
background: rgba(0,0,0,.8); | |
} | |
.lightbox{ /*用于吸引用户注意的元素*/ | |
position: absolute; | |
z-index: 1; | |
/*其余样式*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment