Rays Test Pages - Strike Through Text

 

To produce strike-through text use <strike>TEXT</strike>

To produce strike-through text use <s>TEXT</s>

The above has been depreciated in the HTML standards. The recommended way is now to use the font decoration line-through style...

To produce strike-through text use CSS

To produce the above line, in the HEAD section of your page put...

<STYLE TYPE="text/css">
<!--
.strike
{
text-decoration:line-through;
}
-->
</STYLE>

The code in the BODY of the text would be...

To produce <span Class="strike">strike-through</span> text use CSS

Another way using CSS is the inline style

To produce strike-through text use CSS

This was done by using...

To produce <span style="text-decoration=line-through;">strike-through</span> text use CSS

This page created 25th November 2004


GoStats stats counter