flex-basis.uvue 687 B

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