how to style a button point to nothing in css code example
Example 1: remove button default border css
button:focus { outline: none; }
Example 2: button style none
button, input[type="submit"], input[type="reset"] {
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
}