html - How can I force set the distance between my divs? -
i not sure why margin:13.5px; doesn't take effect. want set them aside each other 27px. : 

can me give space between them ?
here have : jsfiddle
you need make sure container div right size inner div - @ moment small inner div isn't showing margin.  if remove margin .tl-box , add following styles (makes outer box correct width it's contents , adds margin it), should fix issue:
.slide .col-lg-2 {     width:239px;     margin:13.5px;  }        
Comments
Post a Comment