Guest User

Untitled

a guest
Aug 15th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Hyperlink with same width underline
  2. <div class="underlined"><a href="#">blah1</a></div>
  3. <div class="underlined"><a href="#">blah1 asdfdf adfefef</a></div>
  4.  
  5. a:hover {
  6. text-decoration: none;
  7. }
  8. a {
  9. text-decoration: none;
  10. }
  11. .underlined{
  12. margin-bottom: 1px;
  13. }
  14. .underlined:hover
  15. {
  16. margin-bottom: 0px;
  17. border-bottom: 1px solid black;
  18. width: 200px;
  19. }
  20.  
  21. a:link {
  22. text-decoration: none;
  23. }
  24.  
  25. a:hover {
  26. text-decoration: underline;
  27. }
Add Comment
Please, Sign In to add comment