Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <style>
  2. #box{
  3. display: flex;
  4. height: 500px;
  5.  
  6. }
  7. #box-1 {
  8. background-color: blue;
  9. width: 50%;
  10. height: 50%;
  11. }
  12.  
  13. #box-2 {
  14. background-color: red;
  15. width: 50%;
  16. height: 50%;
  17. }
  18. </style>
  19.  
  20. <div id="box">
  21. <div id="box-1"></div>
  22. <div id="box-2"></div>
  23. </div>
  24.  
  25. #box-1 {
  26. background-color: blue;
  27. width: 50%;
  28. height: 50%;
  29. display: flex;
  30. }
  31.  
  32. #box-2 {
  33. background-color: orangered;
  34. width: 50%;
  35. height: 50%;
  36. display: flex;
  37. }
  38. </style>
  39.  
  40. <div id="box-1"></div>
  41. <div id="box-2"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement