You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 line
545B

  1. .flex {
  2. display: flex;
  3. display: -webkit-box;
  4. }
  5. .flex-start {
  6. display: flex;
  7. display: -webkit-box;
  8. justify-content: start;
  9. -webkit-box-pack: start;
  10. }
  11. .flex-center {
  12. display: flex;
  13. display: -webkit-box;
  14. justify-content: center;
  15. -webkit-box-pack: center;
  16. }
  17. .flex-end {
  18. display: flex;
  19. display: -webkit-box;
  20. justify-content: end;
  21. -webkit-box-pack: end;
  22. }
  23. .flex-space-between {
  24. display: flex;
  25. display: -webkit-box;
  26. justify-content: space-between;
  27. -webkit-box-pack: justify;
  28. }