Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing grey border from form input on Chrome

http://i55.tinypic.com/3325gyo.png

This grey border appears when you focus on the text field. I've tried outline: 0 which doesn't remove it. Any suggestions? Thanks

like image 920
Allan Thomas Avatar asked Dec 21 '22 15:12

Allan Thomas


1 Answers

You can do like this:

input:focus {outline: none;}

like image 191
Naveed Ahmad Avatar answered Jan 11 '23 00:01

Naveed Ahmad