|
CodeAve.com - CSS - Text Display | |||
|
|
|||
| Text Decoration | ||||
|
|
||||
<html> <head> <title>CodeAve.com/CSS - Text Decoration</title> </head> <body bgcolor="#FFFFFF"> <b>underline</b><br> <span style="text-decoration: underline"> Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation or any nation so conceived and so dedicated can long endure. </span> <p> <b>overline</b><br> <span style="text-decoration: overline"> Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation or any nation so conceived and so dedicated can long endure. </span> <p> <b>line-through</b><br> <span style="text-decoration: line-through"> Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation or any nation so conceived and so dedicated can long endure. </span> <p> <b>blink (Netscape Only)</b><br> <span style="text-decoration: blink"> Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation or any nation so conceived and so dedicated can long endure. </span> <p> <b>None (Removes any inherited properties)</b><br> <span style="text-decoration: none"> Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation or any nation so conceived and so dedicated can long endure. </span> </body> </html>
|
||||
|
|
||||