Advertisement
talas

turn text italic when hovering

May 3rd, 2021
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 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. a:hover {
  11. webkit-filter: blur(1px); /* Chrome, Safari, Opera */
  12. filter: blur(1px);
  13. font-style: italic;
  14. text-decoration: none !important;
  15. color: #000000;
  16. -webkit-transition: all .3s ease-in-out;
  17. -moz-transition: all .3s ease-in-out;
  18. -o-transition: all .3s ease-in-out;
  19. -ms-transition: all .3s ease-in-out;
  20. transition: all .3s ease-in-out;
  21. }
  22. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement