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>
- div {
- width: 100px;
- height: 50px;
- border: 1px solid black;
- background: yellow;
- transition: width 5s;
- -webkit-transition: width 5s;
- -moz-transition: width 5s;
- }
- div:hover {
- width: 200px;
- }
- </style>
- </head>
- <body>
- <div>TODO write content</div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment