imcrazytwkr

Backdrop-filter polyfill

Jan 31st, 2020
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.21 KB | None | 0 0
  1. .backdrop-blur {
  2.   z-index: -1;
  3. }
  4.  
  5. .backdrop-blur:before {
  6.   content: '';
  7.   position: absolute;
  8.   background: inherit;
  9.  
  10.   top: 0;
  11.   right: 0;
  12.   bottom: 0;
  13.   left: 0;
  14.  
  15.   filter: blur(4px);
  16.   z-index: 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment