flex-shrink.uvue 785 字节
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
<template>
  <view style="flex-grow: 1">
    <view>
      <text>flex-shrink</text>
      <view style="
          width: 250px;
          height: 150px;
          background-color: gray;
          flex-direction: row;
        ">
        <view class="common" style="background-color: red; flex-shrink: 1">
          <text>1</text>
        </view>
        <view class="common" style="background-color: green; flex-shrink: 2">
          <text>2</text>
        </view>
        <view class="common" style="background-color: blue; flex-shrink: 3">
          <text>3</text>
        </view>
      </view>
    </view>
  </view>
</template>

<style>
  .common {
    width: 125px;
    height: 50px;
    justify-content: center;
    align-items: center;
  }
DCloud-WZF's avatar
DCloud-WZF 已提交
32
</style>