kylertism

rotate on hover images / text

Aug 24th, 2025
5
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <style>
  2.  
  3. #rotated {
  4. display: flex;
  5. justify-content: center;
  6. transition: transform 0.4s ease;
  7. }
  8.  
  9.  
  10. #rotated:hover {
  11. -webkit-transform: rotate(3deg);
  12. transform: rotate(3deg);
  13. -moz-transition: all 0.4s;
  14. -webkit-transition: all 0.4s;
  15. transition: all 0.4s;
  16. }
  17.  
  18. </style>
  19.  
  20. <div id="rotated"> yeah hi </div>
Advertisement
Add Comment
Please, Sign In to add comment