Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE>
- <html>
- <body>
- <div class = 'entire'>
- <div class = 'row'>
- <div class = 'jkol'>
- <div class = 'dou'>
- <p>Text 2</p>
- </div>
- </div>
- <div class = 'jkol'>
- <div class = 'colmnm'>
- <p>Text 1</p>
- </div>
- </div>
- </div>
- </div>
- </body>
- <style>
- .entire {
- margin: 15px;
- }
- .row {
- width: 100%;
- flex-wrap: wrap;
- display: flex;
- flex-direction: row;
- }
- .jkol {
- flex-basis: 100px;
- flex-direction: column;
- flex: 1;
- display: flex;
- }
- .dou {
- background-color: aqua;
- }
- .colmnm {
- background-color: aquamarine;
- }
- </style>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement