Hi, I need to create a red line through text in html. Please see image attached. This is the code for that table: <table class="price"> <tr> <th>Treatment</th> <th>RRP per eye</th> <th>Up to 50% OFF for VHI, Quinn and Aviva Members</th> </tr> <tr> <td>Premier Lasik / Lasek</td> <td>from €990</td> <td>from €495</td> </tr> <tr> <td>Advanced CustomVue WaveFront<br /> Lasik / Lasek</td> <td>from €1990</td> <td>from €995</td> </tr> </table> Code (markup):
Hi there therapie2010 You can give this a try: CSS: <style type="text/css"> del { color: red; } del span { color: black; } </style> Code (markup): HTML: <del><span>Stricken Text</span></del> Code (markup):