Advertisement
GIFCITY

float on hover link

Nov 19th, 2023
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <style>
  2. a {
  3. display: inline-block; /*necessary*/
  4. transition: .2s ease;
  5. }
  6.  
  7. a:hover {
  8. transform: translateY(-20%);
  9. }
  10. </style>
  11. <a href="URL">text</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement