How to create a glowing border around a HTML Input Field?

I have seen some text boxes where it has a glowing border. How can I add it?

Comments

  • .glowing-border {
        border: 2px solid #dadada;
        border-radius: 7px;
    }
    
    .glowing-border:focus { 
        outline: none;
        border-color: #9ecaed;
        box-shadow: 0 0 10px #9ecaed;
    }
    
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion