Created
October 2, 2024 00:05
-
-
Save hmmhmmhm/28170d35640681a66ac8460cffdb7b00 to your computer and use it in GitHub Desktop.
Backlight Pure CSS, 백라이트 효과를 CSS로 구현한 간단 코드
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
.backlight:after { | |
content: ""; | |
width: 100%; | |
height: 100%; | |
top: 0; | |
position: absolute; | |
background: inherit; | |
filter: blur(20px); | |
z-index: -1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment