margin-bottom.uvue 898 字节
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<template>
  <view style="flex-grow: 1;">
    <view>
      <text>margin-bottom: 25px</text>
      <view style="width: 250px;height: 250px;background-color: gray;">
        <view class="common" style="background-color: red;"></view>
        <view class="common" style="margin-bottom: 25px;"></view>
        <view class="common" style="background-color: blue;"></view>
      </view>
    </view>

    <view>
      <text>margin-bottom: 10%</text>
      <view style="width: 250px;height: 250px;background-color: gray;">
        <view class="common" style="background-color: red;"></view>
        <view class="common" style="margin-bottom: 10%;"></view>
        <view class="common" style="background-color: blue;"></view>
      </view>
    </view>
  </view>
</template>

<script>

</script>

<style>
  .common {
    height: 50px;
    background-color: green;
  }
</style>