JSFiddle - React, Tailwind, and code Playground
HTML
<div id="liquid">
<div id="fixed">350x100</div>
</div>
CSS
#liquid{
width: 100%;
background: purple;
}
#fixed{
width:350px;
height:100px;
background: orange;
margin: 0 auto;
}