Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- #rotated {
- display: flex;
- justify-content: center;
- transition: transform 0.4s ease;
- }
- #rotated:hover {
- -webkit-transform: rotate(3deg);
- transform: rotate(3deg);
- -moz-transition: all 0.4s;
- -webkit-transition: all 0.4s;
- transition: all 0.4s;
- }
- </style>
- <div id="rotated"> yeah hi </div>
Advertisement
Add Comment
Please, Sign In to add comment