You're seeing the whitespace between your div elements. Remove the whitespace from your HTML, or set the font-size of the container to zero so the spaces don't get rendered.
.tile-container {
font-size: 0
}
.tile-container > div {
font-size: 14px; /* Or whatever you like. */
}