JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <div class="element"></div>
</div>

CSS

.container {
    width: 50%;
    background: #9AE5C6;
    height: 50px;
    padding: 25px 0;
    display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
    
}
.element {
    width: 200%;
    background: #F9BADE;
    height: 50px;
    flex-basis: 100%;
}