Extra space below checkbox element
HTML
<div class="container">
<input type="checkbox" />
</div>
CSS
* {
box-sizing: border-box;
}
.container {
border: solid 1px;
padding: 0;
}
input {
height: 60px;
width: 60px;
margin: 0;
}
<div class="container">
<input type="checkbox" />
</div>
* {
box-sizing: border-box;
}
.container {
border: solid 1px;
padding: 0;
}
input {
height: 60px;
width: 60px;
margin: 0;
}