I have following code:
In HTML
<div id="first" ></div>
<div id="second"></div>
In CSS
#first,#second {
background-color: red;
display: inline-block;
width:50px;
height:50px;
margin:0px;
padding:0px;
border: 0px;
}
I observe a space between the divs which I am not able to remove. Any help? Here is the link to jsfiddle source.