JSFiddle - React, Tailwind, and code Playground

by Gaurav Singh

HTML

<div class="header-wrap">
    <div class="header">header</div>
  </div>
  <div class="content-wrap">
    <div class="content">content</div>
  </div>

CSS

.header-wrap{
      background-color:yellow;
    }
    .content-wrap{
      background-color:orange;
    }
    .header{
      margin:0 auto;
      background-color: red;
      width:40em;
    }