flex.styl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .flex
  2. display flex
  3. align-items: center
  4. .flex-column-center
  5. display flex
  6. flex-direction: column
  7. justify-content: center
  8. align-items: center
  9. .flex-column-between
  10. display flex
  11. flex-direction: column
  12. justify-content: space-between
  13. align-items: center
  14. .flex-column-around
  15. display flex
  16. flex-direction: column
  17. justify-content: space-around
  18. align-items: center
  19. .flex-center
  20. display flex
  21. justify-content: center
  22. align-items: center
  23. .flex-between
  24. display flex
  25. justify-content: space-between
  26. align-items: center
  27. .flex-around
  28. display flex
  29. justify-content: space-around
  30. align-items: center
  31. .flex-wrap
  32. flex-wrap:wrap
  33. .flex-end
  34. justify-content: flex-end
  35. .flex-start
  36. justify-content: flex-start
  37. .flex-column
  38. flex-direction: column
  39. .flex-align-end
  40. align-items: flex-end
  41. .flex-align-baseline
  42. align-items: baseline
  43. .flex1
  44. flex 1
  45. .flex2
  46. flex 2
  47. .flex3
  48. flex 3
  49. // 没有数据时的展示
  50. .null-data
  51. width 100%
  52. margin-top 30rpx
  53. display flex
  54. align-items center
  55. flex-direction column
  56. justify-content center
  57. .image
  58. width 100rpx
  59. height 100rpx
  60. view
  61. margin-top 30rpx
  62. font-size 32rpx
  63. color #929292
  64. .end-data
  65. text-align center
  66. font-size 32rpx
  67. color #929292
  68. line-height 80rpx