JSFiddle - React, Tailwind, and code Playground

by mehulkar

HTML

<div class="wrapper">
  <div class="module"></div>
  <div class="module"></div>
  <div class="module"></div>
</div>

CSS

.wrapper {
  width: 100%;
  background: #ccc;
}
.wrapper div {
  width:30%;
  height:100px;
  float:left;
  margin: 0 1px;
}
.module {
  background-color:#a0a0a0;
  border:solid 1px red;

}