'textDecorationNone' Example : textDecorationNone « CSS « HTML / CSS

HTML / CSS » CSS » textDecorationNone 
'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:overline" 
       onclick="myT.style.textDecorationOverline='true'">

<input type="button" 
       value="decoration:underline" 
       onclick="myT.style.textDecorationUnderline='true'">

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

    
      
      
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.