Advertisement
kyujouz

italicize hover code

Jun 28th, 2021
2,863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <style>
  2. a{
  3. -webkit-transition: all .3s ease-in-out;
  4. -moz-transition: all .3s ease-in-out;
  5. -o-transition: all .3s ease-in-out;
  6. -ms-transition: all .3s ease-in-out;
  7. transition: all .3s ease-in-out;
  8. text-decoration: none;
  9.  
  10. }
  11.  
  12. a:hover {
  13. webkit-filter: blur(1px); /* Chrome, Safari, Opera */
  14. filter: blur(1.5px);
  15. font-style: italic;
  16. text-decoration: none !important;
  17.  
  18. -webkit-transition: all .3s ease-in-out;
  19. -moz-transition: all .3s ease-in-out;
  20. -o-transition: all .3s ease-in-out;
  21. -ms-transition: all .3s ease-in-out;
  22. transition: all .3s ease-in-out;
  23.  
  24. }
  25. </style>
  26. </head>
  27. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement