How can I get rid of input border in chrome?

后端 未结 5 1168
感情败类
感情败类 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:41

    input, select {
        outline: none;
    }
    

    This will disable the browser outline for all regular form elements.

提交回复
热议问题