Why Inline-block element have gaps in CSS. How can I prevent spaces between Inline-block elements. Here in the image child elements of container have spaces 
.container {
   width:360px; height:360px; border:5px solid #999;
}
.childs {
  width:130px; height:130px; display: inline-block; border:1px solid #eee;
}
 
     
    