@mixin image-cover($heightaspect) { /* image cover */ position: relative; display: inline-block; overflow: hidden; img { position: absolute; object-fit: cover; width: 100% !important; height: 100% !important; } &:after { content: ""; display: block; padding-bottom: 100% / $heightaspect; } }