text-decoration
CSS text-decoration Property
The CSS text-decoration property is used to add specific decorations to your text inside of elements.
(Firefox is the only popular browser I could see blinking text in)
CSS CODE EXAMPLE
<style type="text/css">
#p1{
text-decoration: overline;
}
#p2{
text-decoration: line-through;
}
#p3{
text-decoration: underline;
}
</style>
<p id="p1">paragraph content ...</p>
<p id="p2">paragraph content ...</p>
<p id="p3">paragraph content ...</p>
#p1{
text-decoration: overline;
}
#p2{
text-decoration: line-through;
}
#p3{
text-decoration: underline;
}
</style>
<p id="p1">paragraph content ...</p>
<p id="p2">paragraph content ...</p>
<p id="p3">paragraph content ...</p>
paragraph content ...
paragraph content ...
paragraph content ...
Possible Values:
underline •• overline •• line-through •• blink(Firefox is the only popular browser I could see blinking text in)
0 Response to "text-decoration"
Post a Comment