padding-right.uvue 603 B

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