JSFiddle - React, Tailwind, and code Playground

by Satheesh Kumar

HTML

<div class="container">


<div class="darkgrey">

</div>
<div class="lightgrey">

</div>
</div>

CSS

.darkgrey {
  background-color: #262626;
height:  600px;
position: relative;
}
.lightgrey {
  background-color: #cfcdc7;
  height:  600px;
  position: relative;
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}