I have an idea, but for this you will need to add an additional element for each thickness level.
HTML
<span><strike>test test</strike></span><br /> <span id="test"><strike> </strike></span>
CSS
span {height:1em} #test {position:relative;top:-1.3em}
By the way, spaces in the second run are special - you will have to use alt + 0160 or alt + 255.
You can use the pixel block too on the negative top when ull tries to set it exactly.
There is another alternative, which includes using the first text layout, and then the <strike> or <del> style and see if you can push it vertically without moving the text with it.
HTML
<span><strike>test test</strike></span>
CSS
span {text-decoration:line-through;color:red} strike {position:relative;top:1px}
Both work fine, but remember to use the doctype transitional idea. <strike> deprecated.
Knu Mar 30 '10 at 5:35 2010-03-30 05:35
source share