Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>TODO supply a title</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <style>
- p {
- width: 100px;
- height: 50px;
- border: 1px solid black;
- background: yellow;
- transition: width 5s, height 5s, border 5s, transform 5s;
- -webkit-transition: width 5s, height 5s, border 5s, transform 5s;
- }
- p:hover {
- width: 200px;
- height: 100px;
- border: 10px solid red;
- transform: rotate(180deg);
- -webkit-transform: rotate(180deg);
- }
- </style>
- </head>
- <body>
- <p>TODO write content</p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment