i have been trying to display 3 boxes in a row without any spaces in-between them.
i want to achieve this without using font-size property.
html,body {
height:100%;
width:100%;
margin:0;
}
#b {
height:25%;
width:25%;
background:lightblue;
display:inline-block;
}
<div id=b></div>
<div id=b></div>
<div id=b></div>