JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrap">
    <div class="inner">
        <div class="normal">xx</div>
        <div class="full">xx</div>
    </div>
</div>

CSS

.wrap{
    height: 500px;
    width: 300px;
    margin: 0 auto;
    padding: 0 50px;
    background: yellow;
}

.normal{
    background: green;
}


.full{
    background: orange;
    padding: 0 -50px;
}