skip to Main Content

I have a div with login-box class. I wanna blur everything (except input box) and stop scrolling when I hover my login box. how can I do it with css?

2

Answers


  1. Chosen as BEST ANSWER

    enter image description here

    ı want to blur back of the box and when the box closed (box will close after submit) return old setings


  2. What you want isn’t clear, but to blur an element using CSS you can you a filter:

    element {
    filter: blur(10px);
    -webkit-filter: blur(10px);
    }
    

    Please try rephrasing your question or putting your code so it’s more clear.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search