How to change Weekend's color to blue?
I’m using razor and I have a flag-enum which can directly convert to string like this:
var a = 1|2|6|7;
var weekdayStr=a.ToString();//weekdayStr=="Monday, Tuesday, Weekend"
And the html:
<table>
<tr>
<td>Monday, Tuesday, Weekend</td></tr></table>
How do I only change one word’s color, not all text in td?
reference from