JSFiddle - React, Tailwind, and code Playground

HTML

<div class='parent'>
    <div class='child'></div>
</div>

CSS

.parent {
    width:200px;
    height:200px; 
    background:red;
}
.child {
    width:100vw;
    height: 50px; 
    background:yellow;
}