margin-top.uvue 855 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view>
  4. <text>margin-top: 25px</text>
  5. <view style="width: 250px;height: 250px;background-color: gray;">
  6. <view class="common" style="background-color: red;"></view>
  7. <view class="common" style="margin-top: 25px;"></view>
  8. <view class="common" style="background-color: blue;"></view>
  9. </view>
  10. </view>
  11. <view>
  12. <text>margin-top: 10%</text>
  13. <view style="width: 250px;height: 250px;background-color: gray;">
  14. <view class="common" style="background-color: red;"></view>
  15. <view class="common" style="margin-top: 10%;"></view>
  16. <view class="common" style="background-color: blue;"></view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. </script>
  23. <style>
  24. .common {
  25. height: 50px;
  26. background-color: green;
  27. }
  28. </style>