this question has answer here:
i created html button, , after styling css, every time it's clicked blue selection border appears around it. there way fix this? know default unchanged element not when create it, i'm thinking must have css added.
html:
<button type="button" class="drop-button" >-</button>
css:
.drop-button { background-color: #343436; color: #ffffff; border: none; border-radius: 5px; margin-right: 8px; margin-left: 4px; height: 20px; width: 25px; font-size: 20px; vertical-align: middle; line-height: 0px; }
this default behavior of chrome. can turn off this...
button:focus{ outline: none; }
Comments
Post a Comment