Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #wrapper {
  2. display: flex;
  3. flex-direction: column;
  4. background-color: #ddd;
  5. width: 900px;
  6. margin: 0 auto;
  7. }
  8.  
  9. #box1 {
  10. width: 100%;
  11. }
  12.  
  13. .inner_wrapper {
  14. display: -webkit-flex;
  15. display: -moz-flex;
  16. display: -ms-flex;
  17. display: -o-flex;
  18. display: flex;
  19. flex-direction: row;
  20. }
  21.  
  22. @media (max-width:500px){
  23. .inner_wrapper {
  24. flex-direction: column;
  25. }
  26. }
  27.  
  28. #top {
  29. flex:1;
  30. }
  31.  
  32. #bottom {
  33. flex:1;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement