JSFiddle - React, Tailwind, and code Playground

by mromanbanks

HTML

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

CSS

.container {
  width: 100%;
  max-width: 500px;
  background: red;
  padding: 0 20px;
  box-sizing: border-box;
}

.inside {
  width: 100%;
  height: 100px;
  background: yellow;
}

body {
  margin: 0;
  padding: 0;
}