One of the cells in my table has the following content:
<td><b>Grand Total</b></td>
I want to add a line under the text "Grand Total". I tried using text-decoration: underline;
, and it worked fine. However, I now need to customize the color and thickness of the underline. My attempt at using text-decoration-color: red;
did not produce the desired result. How can I solve this issue?