sunleo
0
Q:

css get rid of button outline on click

button:hover, button:focus {
  outline: none;
}
4
button:focus {outline:0;}
2
<style>
input[type="button"]
{
    width:120px;
    height:60px;
    margin-left:35px;
    display:block;
    background-color:gray;
    color:white;
    border: none;
    outline:none;
}
</style>
1
.x-btn:focus, .button:focus, [type="submit"]:focus {
   outline: none;
}
0

New to Communities?

Join the community