For a new site I'm writing, I would like to be able to specify the background color of the table cell based on the value within that cell. For example:
value < 6, bgcolor = red
6 < value < 8, bgcolor = green
value > 8, bgcolor = red
Is this possible? The data will be gotten by JSON.
value < 6, bgcolor = red
6 < value < 8, bgcolor = green
value > 8, bgcolor = red
Is this possible? The data will be gotten by JSON.