is “text-decoration” shorthand supported?
by David Storey
HTML
<p id="style">Decoration is a double line</p>
<p id="color">Decoration is a blue line</p>
<p id="line">Decoration is a overline</p>
<p id="style-color">Decoration is a dashed red line</p>
<p id="style-line">Decoration is a dotted line through</p>
<p id="akk">Decoration is a wavy green underline</p>
CSS
#style {
text-decoration: double;
}
#color {
text-decoration: blue;
}
#line {
text-decoration: overline;
}
#style-color {
text-decoration: dashed red;
}
#style-line {
text-decoration: dotted line-through;
}
#all {
-moz-text-decoration: underline wavy green;
}