JSFiddle - React, Tailwind, and code Playground

HTML

<div id="gray">
    <div id="content"></div>
</div>

CSS

html {
    background: white;
}

body {
    background: yellow;
}

#gray {
   width:50%;
   background:gray;
   display: table;
}

#content {
   width:140%;
   height:250px;
   border:1px solid red;
   margin: 20px -70% 30px 30%;   
}