How can I get rid of input border in chrome?

后端 未结 5 1166
感情败类
感情败类 2021-01-04 07:22

In Chrome, my design has a light border or outline along the edges of the search input field. How can I get rid of this?

5条回答
  •  一个人的身影
    2021-01-04 07:40

    Hey, it is easy to remove outline. Just set none to input field's outline property in css.

    For e.g.

    form input[type=text]:focus, form input[type=password]:focus, textarea:focus {
        outline: none;
    }
    

    Above will remove outline border in chrome and safari browsers on form element focus.

提交回复
热议问题