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: 50px;
- height: 50px;
- background-color: yellow;
- border: 1px solid black;
- text-align: center;
- }
- div#box2 {
- transform: translate(100px, 0px);
- background-color: blue;
- }
- div#box3 {
- transform: scale(1.2, 1.2);
- background-color: red;
- }
- div#box4 {
- transform: rotate(30deg);
- background-color: green;
- }
- </style>
- </head>
- <body>
- <div id="box1">box1</div>
- <div id="box2">box2</div>
- <div id="box3">box3</div>
- <div id="box4">box4</div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment