flex-basis.uvue 742 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1
<template>
DCloud-WZF's avatar
DCloud-WZF 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
  <view style="flex-grow: 1">
    <view>
      <text>flex-basis</text>
      <view
        style="
          width: 500rpx;
          height: 300rpx;
          background-color: gray;
          flex-direction: row;
        "
      >
        <view class="common" style="flex-basis: 300rpx">
          <text>300rpx</text>
        </view>
        <view
          style="width: 100rpx; height: 100rpx; background-color: green"
        ></view>
        <view
          style="width: 100rpx; height: 100rpx; background-color: blue"
        ></view>
      </view>
    </view>
  </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
25 26 27
</template>

<style>
DCloud-WZF's avatar
DCloud-WZF 已提交
28 29 30 31 32 33 34 35
.common {
  width: 100rpx;
  height: 100rpx;
  background-color: red;
  justify-content: center;
  align-items: center;
}
</style>