Guest User

Untitled

a guest
Jun 21st, 2020
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <div class="box">
  2. <div class="box__red"></div>
  3. <div class="box__green"></div>
  4. </div>
  5.  
  6. .box {
  7. display: flex;
  8. flex-direction: row;
  9. }
  10. .box__green, .box__red {
  11. width: 50%;
  12. height: 50px;
  13. }
  14.  
  15. .box__green {
  16. background-color: green;
  17. }
  18.  
  19. .box__red {
  20. background-color: red;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment