Colour table cell
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>
<td>
<div class="hot">101</span>
</td>
</tr>
</table>
CSS
.hot{
display: inline-block;
height: 100%;
background-color: red;
}