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