I'm running into an issue where I cannot remove the spaces between divs. I've included my markup and css and a fiddle: http://jsfiddle.net/kW5uW/12/
Despite having set margin and padding
to zero, I still see spaces in between the divs, how can I remove this? I want all the boxes to be right next to each other.
CSS and Markup:
.segment {
width: 20px;
height: 20px;
background: grey;
border: 1px solid black;
display: inline-block;
padding: 0px;
margin: 0px;
}
.container {
padding: 0px;
margin: 0px;
}
<div class="container">
<div class="segment"></div>
<div class="segment"></div>
<div class="segment"></div>
<div class="segment"></div>
<div class="segment"></div>
</div>
Any advice would be appreciated. Thanks.