If i have a TD(table column) . Like
<table>
<tr>
<td>* Name</td>
<td><input type="text"></td>
</tr>
</table>
Is it possible that i apply two styles in the first column. Like i want that my asterisk seems red and name seems blue. If i take it in two columns then it is possible, like
<table>
<tr>
<td style color="red">*</td>
<td style color="blue">Name</td>
<td><input type="text"></td>
</tr>
</table>
But i want to know is it possible in the first case when both * and Name text are in the same column?
Thanks
Yes, I would use
<span style="color: red">around the asterisk inside the td and you can either style the whole td w/ the blue or just the name if you plan on having uncolored areas inside the td.