Horje
css get rid of button outline on click Code Example
css get rid of button outline on click
button:hover, button:focus {
  outline: none;
}
html button remove border on click
.x-btn:focus, .button:focus, [type="submit"]:focus {
   outline: none;
}
Source: theme.co
button remove border if click
<style>
input[type="button"]
{
    width:120px;
    height:60px;
    margin-left:35px;
    display:block;
    background-color:gray;
    color:white;
    border: none;
    outline:none;
}
</style>




Css

Related
skeleton css cdn Code Example skeleton css cdn Code Example
css capitalize first letter Code Example css capitalize first letter Code Example
css center elment screen Code Example css center elment screen Code Example
antialiasing css Code Example antialiasing css Code Example
flexbox go to next row Code Example flexbox go to next row Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
18