1234567891011121314151617181920212223242526272829 |
- <template>
- <view style="flex-grow: 1;">
- <view>
- <text>padding-right: 25px</text>
- <view class="common" style="padding-right: 25px;">
- <view style="flex-grow: 1;background-color: red;"></view>
- </view>
- </view>
- <view style="width: 250px;">
- <text>padding-right: 10%</text>
- <view class="common" style="padding-right: 10%;">
- <view style="flex-grow: 1;background-color: red;"></view>
- </view>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style>
- .common {
- width: 250px;
- height: 250px;
- background-color: gray;
- }
- </style>
|