How can I set the default Chrome input\'s outline style (on focus, the orange one), so it looks the same in every browser? Chrome style seems to be textarea:focus{outl
textarea:focus{outl
default Chrome outline-style:
outline-color: rgb(77, 144, 254); // #4D90FE outline-offset: -2px; outline-style: auto; outline-width: 5px;
convert to this
input:focus { outline:none; border:1px solid #4D90FE; -webkit-box-shadow: 0px 0px 5px #4D90FE; box-shadow: 0px 0px 5px #4D90FE; }