height.uvue 412 B

123456789101112131415161718192021222324
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view>
  4. <text>height: 250px</text>
  5. <view class="common" style="height: 250px;"></view>
  6. </view>
  7. <view style="height: 250px;">
  8. <text>height: 50%</text>
  9. <view class="common" style="height: 50%;"></view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. </script>
  15. <style>
  16. .common {
  17. width: 250px;
  18. background-color: red;
  19. }
  20. </style>