Whenever I compile my page, there is a button made of wood:
Upon clicking this button, it displays some white shadow:
Furthermore, when I click and press the button, it exhibits a gray shadow:
Is there a way to remove these shadows?
.btn-enter {
background: url(../images/plank-36736_960_720.png) no-repeat center center;
background-size:cover;
position:absolute;
top: 75%;
left: 24%;
width:55%;
height: 20%;
border:none;
background-color:none;
}
.btn-enter:hover {
background: url(../images/plank-36736_960_720.png) no-repeat center center;
background-size:cover;
position:absolute;
top: 75%;
left: 24%;
width:55%;
height: 20%;
border:none;
background-color:none;
}
.btn-enter:active {
background: url(../images/plank-36736_960_720.png) no-repeat center center;
background-size:cover;
position:absolute;
top: 75%;
left: 24%;
width:50%;
height: 20%;
border:none;
background-color:none;
}
<button type="button" class="btn btn-default btn-enter"></button>