SyntaxFix
Write A Post
Hire A Developer
Questions
For removing the default 'blue-border' from button on button focus:
In Html:
<button class="new-button">New Button...</button>
And in Css
button.new-button:focus { outline: none; }
Hope it helps :)