A script for crossing out text on webpage

dave3z

New Member
Hi. I'd like to cross out some text on my webpage, but still have the text visible, i.e crossing out the higher price of a reduced price item.

Is there a simple way for a total novice like myself to do this?

Thanks in advance,
David
 

jnjc

New Member
There are a couple of ways to do it. The simplest would be:

Code:
<del>Test Text</del>

You could also do it using styles, look at the 'text-decoration' attribute the value would be strikethrough

HTH,
JC
 
Top