yes, the div on the right will look something like this.
border: 1px solid #fff;
border-left: none;
the second leftmost will override the left border that was just laid there
EDIT:
ok since you are using jQuery masonary - do it like this
.container {
width:50px;
height:80px;
border:1px solid black;
margin-right: -1px;
margin-bottom: -1px;
}
the overlap method described by me will work
source
share