Prev Demo
CSS3
>
Text-Decoration Property
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> .class1 { text-decoration: overline; border: 1px solid red; padding: 5px; } .class2 { text-decoration: line-through; border: 1px solid green; padding: 5px; } .class3 { text-decoration: underline; border: 1px solid orange; padding: 5px; } </style> <h3 class="class1">www.techfunda.com</h3> <h3 class="class2">www.techfunda.com</h3> <h3 class="class3">www.techfunda.com</h3> </body> </html>
Note: We DO NOT save your trial code in our database.
Output