JSFiddle - React, Tailwind, and code Playground

by deathstalkersid

HTML

<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="UTF-8">
    <title>Document</title>
  </head>
  <style>
    .child {
      background-color: #000;
      height: 100px;
    }
    
    .parent > * + * {
      margin-top: 10px;
    }
  </style>

  <body>
    <div class="parent">
      <div class="child"></div>
      <div class="child"></div>
      <div class="child"></div>
    </div>
  </body>

</html>