JSFiddle - React, Tailwind, and code Playground
by Zoxon
HTML
<div class="top_wrapper">
<div class="header">
.header
</div>
<div class="content">
.content
</div>
</div>
CSS
*{
margin: 0;
padding: 0;
}
.top_wrapper {
}
.header {
background: red;
width: 960px;
margin: 0px auto;
}
.content {
background: blue;
width: 960px;
margin: 0px auto;
}