Skip to content

Instantly share code, notes, and snippets.

@hmmhmmhm
Created October 2, 2024 00:05
Show Gist options
  • Save hmmhmmhm/28170d35640681a66ac8460cffdb7b00 to your computer and use it in GitHub Desktop.
Save hmmhmmhm/28170d35640681a66ac8460cffdb7b00 to your computer and use it in GitHub Desktop.
Backlight Pure CSS, 백라이트 효과를 CSS로 구현한 간단 코드
.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