Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Class</title>
- <style type="text/css">
- .box-red{
- background: red;
- width: 50px;
- height: 500px;
- margin: 10px;
- }
- .box-blue{
- background: blue;
- width: 20px;
- height: 20px;
- margin: 10px;
- }
- </style>
- </head>
- <body>
- <div class="box-red"></div>
- <div class="box-red"></div>
- <div class="box-red"></div>
- <div class="box-blue"></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement