I have scoured the forum and came across several older threads that suggest it is not achievable with just CSS (the system I am utilizing does not support scripts). Is there a possibility that this has changed or if someone else has an alternative idea?
Within the table below, my goal is to apply the colors Green and Red to their corresponding cells.
<table>
<tr>
<td style="color: green">Green</td>
<td style="color: red">Red</td>
</tr>
<table>
All of the examples I have encountered so far involve some form of script ... which is not useful in my situation.
Any suggestions?