JSFiddle - React, Tailwind, and code Playground

by jnfsmile

HTML

<div id="wrapper">
    <div id="elem">
    </div>
</div>

CSS

#wrapper{
    max-width: 600px;
    width: 100%;
    position: relative;
    top: 0px;
    right: 0px;
    background: goldenrod;
    height: 300px;
}

#elem {
    width: 66%;
    position: absolute;
    top: 0px;
    right: 0px;
    background: royalblue;
    height: 300px;
}