UnixCurious
3
Q:

remove box around button when clicked

<button style="outline: none;"></button>
1
* {
	outline: none;
}
1
<style>
input[type="button"]
{
    width:120px;
    height:60px;
    margin-left:35px;
    display:block;
    background-color:gray;
    color:white;
    border: none;
    outline:none;
}
</style>
1

New to Communities?

Join the community