JSFiddle - React, Tailwind, and code Playground

by vzytoi

HTML

<div class="container">
  <span class="content"></span>
  <span class="content2"></span>
</div>

CSS

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
}

.container {
  width: 100%;
  height: 100px;
  background: lightblue;
  display: flex;
}

.centent {
  background: blue;
  height: 100px;
  width: 100px;
}