Yes; just set 'none' to the 'outline' property:
input { outline: none; }
JS Fiddle demo .
Please note that the outline is a function of the user interface, in order to highlight the current active / -focused element of the form and the removal of this visual mark may interfere with some users.
Edited in response to the comment to the left of Beakr, OP, in the comments below:
I was going to turn it off / change to see what it can do.
To customize the style for outline , you can access individual properties:
elementSelector:focus { outline-width: 4px; outline-style: auto; outline-color: #f90; }
JS Fiddle demo .
The above can also be compressed using abbreviations:
elementSelector:focus { outline: 4px auto #f90; }
The smallest possible graphical measurements that can be used are:
elementSelector:focus { outline-width: thin; }
source share