Re: Plugin: Using the strike tag
I was wondering how you were going to do this one Trent. <strike> is not valid XHTML is it? Although it still renders properly, at least in FF 1.5.0.9 I think you need to do something like this now:
.strike {
text-decoration: line-through;
}
or inline (bad, bad)
style="text-decoration: line-through"
Also, I can’t remember if the <del> tag is XHTML compliant or not. Maybe you could just change the strike
to del
and call it a day?