bg-fixed-in-css-filter-ref.html (637B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Fixed background inside blur filter</title> 6 <style> 7 .scrollable { 8 width: 100px; 9 height: 100px; 10 overflow: hidden; 11 } 12 .bg { 13 width: 100px; 14 height: 100px; 15 background-image: url("repeatable-diagonal-gradient.png"); 16 background-repeat: no-repeat; 17 background-attachment: fixed; 18 } 19 .blur { 20 filter: blur(10px); 21 } 22 </style> 23 </head> 24 <body> 25 <div class="scrollable"> 26 <div class="bg blur"></div> 27 </div> 28 </body> 29 </html>