I have a set of input boxes, which I want to be nudged against each other, but for some reason there is a little bit of space between them, despite their container being display block, and there being no margin, padding, or border on the inputs.
#container {
height: 500px;
background-color: blue;
display: block;
}
input {
width: 30%;
margin: 0;
padding: 0;
border: 0;
}
<div id='container'>
<input type='number'>
<input type='number'>
<input type='number'>
<input type='number'>
<input type='number'>
<input type='number'>
<input type='number'>
<input type='number'>
<input type='number'>
</div>