HTML/CSS/CSS Attributes and Javascript Style Properties/textDecorationUnderline

Материал из Web эксперт
Перейти к: навигация, поиск

"textDecorationUnderline" Example

    
<html>
<body>
<p id="myT">www.wbex.ru</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>