24 lines
222 B
CSS
24 lines
222 B
CSS
|
a {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
b {
|
||
|
text-decoration: wavy;
|
||
|
}
|
||
|
|
||
|
c {
|
||
|
text-decoration: red;
|
||
|
}
|
||
|
|
||
|
d {
|
||
|
text-decoration: red wavy;
|
||
|
}
|
||
|
|
||
|
e {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
f {
|
||
|
text-decoration: red underline wavy overline;
|
||
|
}
|