0

It's been a long day and I can't think what is causing the spacing between my divs

FIDDLE

.sticker {
    position:relative;
    width:123px;
    height:68px;
    display:inline-block;
    border-radius:8px;
    border:1px solid #777777;
}

I've tried all sorts with margin/padding but I can't seem to get all the divs to touch

SaturnsEye
  • 6,297
  • 10
  • 46
  • 62

1 Answers1

0

They're display:inline-block, so whitespace (including your linebreaks) is not discarded.

Ulrich Schwarz
  • 7,598
  • 1
  • 36
  • 48