23 lines
222 B
CSS
23 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;
|
|
}
|