mysterious button spacing issue
<div class="buttons">
<button id="btn-search" type="submit">Search Engine</button>
<button id="btn-lucky" type="submit">Feeling Lucky Today</button>
</div>
.buttons {
max-width: 290px;
margin: auto;
}
#btn-search, #btn-lucky {
height: 34px;
padding: 0 16px;
margin:0 4px;
border: 1px solid #f2f2f2;
}
Can anyone explain the mysterious spacing between these buttons?
I have implemented Eric Meyer's reset as well.