I have the string "Total (incl.tax) $2.81"
in a table's cell:
<table>
<body>
<tr>
<td>Total (incl.tax) $2.81</td>
</tr>
</body>
</table>
I need to style it so that the "(incl.tax)" part is 2px smaller than the rest of the line. I've search StackOverflow and other sites, and have not found an answer to my question:
How would I go about doing this with css?
I don't want to change the text in any other way, otherwise I could have used something similar to this:
<td style="font-size: 15px">Total <em style="font-size: 13px">(incl.tax)</em> $2.81</td>