How-to make background blur using CSS backdrop-filter Property In this example we're using (CSS backdrop-filter Property) to make the background of body blur <!doctype html> <html> <head> <style> body { height:300px; overflow: hidden; background-image: url(https://cdn.pixabay.com/photo/2017/09/05/10/19/business-2717063_960_720.jpg); background-repeat: no-repeat; background-size: 100% 100% ; backdrop-filter: blur(10px); } </style> </head> <body> <p style="color:red; font-size:30px;padding:15px">write yor text hear...</p> </body> </html> © 2025 Manajmnt code Share to : ☷✎ Related How to make image & YouTube Video responsive Using JavaScript (Maintain Optimal Dimensions)In this example, we learn how to make image or video responsive to all devices, the idea depends on … Read MoreHow-to create html editor with context buttonsIn this example i will be share with you how to create html editor with context buttons using codemi… Read MoreHow to create responsive table in html using CSS to create responsive table in html you need html code of table below: <table border="1" <tbo… Read More Comments
Comments
Post a Comment
message