JSFiddle - React, Tailwind, and code Playground

by lucaslazaro

HTML

<table>
  <thead>
    <tr>
      <th>Head</th>      
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Rating</td>
    </tr>
  </tbody>
</table>

CSS

@media screen {
  td {
    background-color: red;
  }
}

@media print {
  td {
    background-color: blue;
    -webkit-print-color-adjust: exact; 
  }
}