hefhuman
12/11/2018 - 1:24 AM

Removing white-space on inline-block

removing white space on inline-block in two ways

/*Method 1*/
.parent{
    font-size: 0; /*This one do the trick*/
}
.inline-block_{
    display: inline-block;
    width: calc(100% / #); /*Change # number of columns you like*/
    height: 300px;
}
/*Method 2*/
.inline-block_{
    display: inline-block;
    width: calc(100% / #); /*Change # number of columns you like*/
    height: 300px;
    margin-left: -5px; /*This one do the trick*/
}