Advertisement
loveberry

tilting text

May 20th, 2023 (edited)
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <style>
  2. .tilty {
  3. text-align: center;
  4. font-size:2em;
  5. animation: tilt 1s infinite alternate;
  6. }
  7.  
  8. @keyframes tilt {
  9. from { transform: rotate(5deg); }
  10. to { transform: rotate(-5deg); }
  11. }
  12. </style>
  13.  
  14. <div class="tilty"><strong>tilting</strong></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement