Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. .wrapper {
  2. display: -ms-flexbox;
  3. display: flex;
  4. -ms-flex-direction: column;
  5. flex-direction: column;
  6. }
  7.  
  8. .block {
  9. display: -ms-flexbox;
  10. display: flex;
  11. -ms-flex-direction: column;
  12. flex-direction: column;
  13. -ms-flex-pack: center;
  14. justify-content: center;
  15. min-height: 40px;
  16. }
  17.  
  18. <div class="wrapper">
  19. <div class="block">
  20. <div class="item"></div>
  21. </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement