JSFiddle - React, Tailwind, and code Playground

by Martin Sjåstad

HTML

<div class="container">
  <div class="parent">
    <p>some inner parent content</p>
  </div>
  <div class="parent">
    <div class="child">
      <div class="son">Some stuff here</div>
      <div class="daughter">Some child here</div>
      <div class="son">Some son here</div>
    </div>
    <div class="child">
      <p>well yeah</p>
      <p>well yeah</p>
      <p>well yeah</p>
      <p>well yeah</p>
    </div>
  </div>
</div>

CSS

.container {
  border: 2px solid red;
}

.parent {
  border: 2px solid blue;
}

.child {
  border: 2px solid green;
}