JSFiddle - React, Tailwind, and code Playground

by Oleg Shmigelski

HTML

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

CSS

#wrapper{
    width: 500px;
    height: 400px;
    background: red;
    margin: 0 auto;
}
header{
    width: 100%;
    height: 50px;
    background: blue;
}