Colour table cell

by twistedlizard

HTML

<table border="1">
  <tr>
    <td>
      <canvas id="myCanvas" width="100" height="100" style="border:1px solid #FF0000;"/>
    </td>
    <td>
    
      <span class="hot">100</span>
      
    </td>
  </tr>
</table>

CSS

.hot{
  display: block;  
  background-color: red;
}