.gallery-box { border: solid 2px transparent; box-sizing: border-box; float: left; overflow: hidden; position: relative; width: 80%; margin-left: 15%; margin-bottom: 5%; } @media (min-width: 500px) { .gallery-box { width: 50%; } } @media (min-width: 768px) { .gallery-box { width: 33.33333333%; } } @media (min-width: 992px) { .gallery-box { width: 25%; } } @media (min-width: 1200px) { .gallery-box { width: 16.66666667%; } } .gallery-box:before { content: ''; display: block; height: 0; padding-top: 100%; } .gallery-box__image { background-position: center; background-repeat: no-repeat; position: absolute; top: 0; left: 0; width: 90%; height: 100%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } ;