PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> div.background { background: pnlpicture url(/pic.jpg) no-repeat center; background-size: cover; align-items: center; display: flex; justify-content: center; height: 200px; width: 300px; } div.transbox { background-color: rgba(255, 255, 255, 0.4); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); padding: 20px; margin: 30px; font-weight: bold; } </style> </head> <body> <h1>backdrop-filter property example</h1> <div class="background"> <div class="transbox"> <p>backdrop-filter: blur(5px)</p> </div> </div> </body> </html>