Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Anchor: selective underline CSS</title>
  5. <style type="text/css">
  6. .a {
  7. text-decoration:none;
  8. font-size: 40px;
  9. }
  10. .w {
  11. }
  12. .t {
  13. background: lime;
  14. }
  15. .b {
  16. background: #fcc;
  17. }
  18. .w:hover .b {
  19. text-decoration: underline;
  20. color: red;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <a class="a" href="/krUkid">
  26. <span class="w">
  27. <span class="t">58</span>
  28. <span class="b">answers</span>
  29. </span>
  30. </a>
  31. </body>
  32. </html>
Add Comment
Please, Sign In to add comment