Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 29, 2022 05:14 pm GMT

Navbar with background blur! Aesthetic look in 2 lines of code .

The one thing I always do when I begin a project is to add a navbar with background blur. Just got obsessed with it.

My Personal Website. View
Personal Website

PvZ2PlantsVsZombies

Open source Contibution.

We will see how to do this in your website too! Just add this to your navbar container.

.bg-blur {  background: transparent;  backdrop-filter: blur(10px);}

Code Review

background: transparent; - If you are having background color make sure you remove color and add this. This is what allows the background content to be visible on the navbar.

backdrop-filter: blur(10px); - This creates that smooth transition of navbar over background with that blur. Play with that values. 10px works good for me.

For more information. MDN Docs

Browser Compatability

Peace

If you are here it means you may have enjoyed reading this blog. Just follow me @shrihari which will motivate to write more, contribute open source.

You can make a drink Buttermilk . Small support comes a long way!

Subscribe If you want to receive these blogs in your mail from @Medium for free!


Original Link: https://dev.to/shrihari/navbar-with-background-blur-aesthetic-look-in-2-lines-of-code--4kp6

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To