JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Document</title>

    <style>
      .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }

      .grid-item {
        padding: 10px;
        border: 1px dotted blue;
      }
    </style>
  </head>
  <body>
    <div class="grid">
      <div class="grid-item">grid Item 1</div>
      <div class="grid-item">grid Item 2</div>
      <div class="grid-item">grid Item 3</div>
    </div>
  </body>
</html>