JSFiddle - React, Tailwind, and code Playground
by Cory Hughes
HTML
<div id="thing"></div>
CSS
:root {
--slide-1: url(https://www.w3schools.com/css/img_fjords.jpg);
}
#thing {
height: 100vh;
background-image: var(--slide-1);
background-size: cover;
}