Copyright © tutorialspoint.com
The text-decoration property is used to add "decorations" to inline content.
All the HTML elements.
object.style.textDecoration="underline"; |
Following is the example which demonstrates how to decorate a text.
NOTE: Blink property does not work with all the browsers.
<p style="text-decoration:underline;"> This will be underlined </p> <p style="text-decoration:line-through;"> This will be striked through. </p> <p style="text-decoration:overline;"> This will have a over line. </p> <p style="text-decoration:blink;"> This text will have blinking effect </p> |
This will produce following result:
This will be underlined This will be striked through. This will have a over line. This text will have blinking effect |
To Become more comfortable - Do Online Practice
Copyright © tutorialspoint.com