Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. a {
  2. text-decoration-line: underline;
  3. text-decoration-style: dashed;
  4. text-decoration-color: orange;
  5. }
  6. .sample {
  7. text-decoration: underline overline dotted green;
  8. }
  9. .through {
  10. text-decoration: line-through;
  11. color: red;
  12. }
  13. .wavy {
  14. text-decoration: underline wavy violet;
  15. }
  16. body {
  17. text-align: center;
  18. font-family: courier new;
  19. font-weight: bold;
  20. font-size: 20pt;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement