Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- this seems to work -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="/index.css" />
- <title>Document</title>
- <style>
- .wrapper {
- background-color: blue;
- display: flex;
- }
- .division1 {
- background-color:red ;
- width: 33.3%;
- }
- .division2 {
- background-color:yellow ;
- height: 100px;
- width: 33.3%;
- }
- .division3 {
- background-color:green ;
- height: 150px;
- width: 33.3%;
- }
- .sub1 {
- background-color: yellow;
- }
- .sub2 {
- background-color: green;
- height: 60px;
- }
- .sub3 {
- background-color: purple;
- height: 30px;
- }
- </style>
- </head>
- <body>
- <div class="wrapper">
- <div class="division1">
- division 1
- <div class="sub1">
- sub 1
- </div>
- <div class="sub2">
- sub 1
- </div>
- <div class="sub3">
- sub 3
- </div>
- </div>
- <div class="division2">
- division 2
- </div>
- <div class="division3">
- Division 3
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement