'textDecorationNone' Example : textDecorationNone « CSS Attributes and Javascript Style Properties « HTML CSS Reference






'textDecorationNone' Example

    
<html>
<body>
<p id="myT">Text sample.</p>
<input type="button" 
       value="decoration:lineThrough" 
       onclick="myT.style.textDecorationLineThrough='true'">

<input type="button" 
       value="decoration:none" 
       onclick="myT.style.textDecorationNone='true'">
</body>
</html>

    
      
      








Related examples in the same category

1.'textDecorationNone' Syntax and Note
2.'textDecorationNone' Possible Values
3.'textDecorationNone' is applied to