JSFiddle - React, Tailwind, and code Playground

by Donna Torr

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
<div class="bg-white border rounded-5">
    
    <section class="p-4 d-flex justify-content-center w-100">
      <div class="table-responsive">
        <table class="table table-striped table-border border-light">
          <thead class="border-light">
            <tr>
              <th scope="col"></th>
              <th scope="col"><strong>Low Season</strong></th>
              <th scope="col"><strong>Mid Season</strong></th>
              <th scope="col"><strong>High Season</strong></th>
            </tr>
          </thead>
          <tbody>
          
            <tr>
              <th scope="row">Long weekend <br />(3 nights)</th>
              <td>£495</td>
              <td>£555</td>
              <td>£570</td>
            </tr>
            <tr>
              <th scope="row">Mid week <br />(4 Nights)</th>
              <td>£480</td>
              <td>£540</td>
              <td>£580</td>
            </tr>
            <tr>
              <th scope="row">Week <br />(7 Nights)</th>
              <td>£735</td>
              <td>£770</td>
              <td>£875</td>
            </tr>


          </tbody>

        </table>
      </div>
    </section>