JSFiddle - React, Tailwind, and code Playground

by Daniel Beff

HTML

<html>
  <head>
    <style>
      td {
        border-collapse: collapse;
        border: 1px solid black;
        padding: 10px;
      }
    </style>
  </head>

  <body>
    <table style="border:1px solid black; border-collapse: collapse;">
      <tr>
        <td style="font-weight: bold">País</td>
        <td style="font-weight: bold">Casos</td>
        <td style="font-weight: bold">Recuperados</td>
      </tr>
      <tr>
        <td style="color:#337ab7">China</td>
        <td id="valor">60,171</td>
        <td>73,159</td>
      </tr>
      <tr>
        <td style="color:#337ab7">Italia</td>
        <td>69,176</td>
        <td>8,326</td>
      </tr>
    </table>
  </body>
</html>