JSFiddle - React, Tailwind, and code Playground

by Jake

HTML

<div id="one">
    This box uses the vw unit.
</div>
<div id="two">
    This box uses the % unit.
</div>

CSS

#one, #two {
    outline: 2px solid red;

    background: tan;
    width: 40%;
    float: left;
}
#one {
    height: 95vh;
}
#two {
    height: 95%;
}
p {
    background: red;
    margin: 10px;
}