JSFiddle - React, Tailwind, and code Playground

by JamesD

HTML

<div id="one" style="height:50px">
        <p>100% Height</p>
    </div>

    <div id="two" style="height:50px">
        <p>100vh Height</p>
    </div>

CSS

p { display:block; background:#eee; }

#one > p { height:100%; }
#two > p { height:100vh; }