JSFiddle - React, Tailwind, and code Playground

by lazybios

HTML

<div class="full-bg-img" style="background-image:url('https://picsum.photos/200/300"></div>

SCSS

@mixin full-bg-img {
    background-size: cover;
    background-position: center;
    height: 100vh; /* vh = viewport height */
}

.full-bg-img {
    @include full-bg-img;
}