I'm applying the strikeout tag
<s>$5,000,000</s>
But the line is too low.. .it's about 1/4 from the bottom rather than through the middle. Any way I can modify this so it goes a bit more through the middle?
|
You can't do it with the strike tag OR the |
|||
|
|
I've cooked up this code which gives you total control over strike-through position and style:
|
|||||||||||
|
|
Not with the strike tag, no. It's part of the rendering engine of the browser. For me (in Chrome) the line is rendered just above the middle. |
|||
|
|
|
This solution allows for padding, and uses the csss line-through property It works for firefox, and chrome/ safari does it right anyway.
and the mark up is something like...
The other solution is to add a background image of a line, and make it the same colour as the text. |
|||
|
|
text-decoration:line-through;– Simon Fox Mar 23 '10 at 20:39<s>tag is entirely appropriate, and more useful than inline CSS such as<span style="text-decoration: line-through;">. The<strike>tag is indeed deprecated, though. – Rory O'Kane Oct 30 '12 at 17:03