Advertisement
ityizhuo

button that changes color when hovered

Jul 23rd, 2021
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. <style>
  3. @font-face {
  4. font-family: lovely;
  5. src: url(https://dl.dropbox.com/s/xde2bkhiie1bm8r/LovelyRegular.ttf);
  6. }
  7. a:link, a:visited {
  8. font-family: lovely;
  9. font-size: 20px;
  10. background-color: #fff;
  11. border: 2px solid #000;
  12. border-radius: 20px;
  13. color: #000;
  14. padding: 5px 15px;
  15. text-align: center;
  16. text-decoration: none;
  17. display: inline-block;
  18. }
  19.  
  20. a:hover, a:active {
  21. background-color: pink;
  22. }
  23. </style>
  24.  
  25. <a href="#i">This is a link</a>
  26.  
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement