JSFiddle - React, Tailwind, and code Playground

by mjmitche

HTML

<table id="theList">
        <thead>
        <tr>
          <th >Item</th>
          <th >Price</th>
      </tr>
      </thead>
      <tbody>

CSS

th,td {
            font-family: Verdana, Arial, Helvetica, sans-serif;
            font-size: 18px;
            color: #000000;
        }
        tr {
            border: 1px solid gray;
        }
        
        th {
            background-color:#D2E0E8;
            color:#003366
        width:200px;
            padding:3px;
        }
        table {
            border: 1pt solid gray;
        }