flex-shrink.uvue 754 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view style="flex-grow: 1">
  3. <view>
  4. <text>flex-shrink</text>
  5. <view style="
  6. width: 250px;
  7. height: 150px;
  8. background-color: gray;
  9. flex-direction: row;
  10. ">
  11. <view class="common" style="background-color: red; flex-shrink: 1">
  12. <text>1</text>
  13. </view>
  14. <view class="common" style="background-color: green; flex-shrink: 2">
  15. <text>2</text>
  16. </view>
  17. <view class="common" style="background-color: blue; flex-shrink: 3">
  18. <text>3</text>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <style>
  25. .common {
  26. width: 125px;
  27. height: 50px;
  28. justify-content: center;
  29. align-items: center;
  30. }
  31. </style>