In my quest to showcase 3 boxes seamlessly lined up in a row, I am faced with the challenge of eliminating spaces between them.
My goal is to accomplish this feat without resorting to the 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>