# flex-grow

CSS 属性 flex-grow CSS 设置 flex 项 主尺寸 的 flex 增长系数。

# uni-app x 兼容性

Web Android iOS
4.0 3.9 4.11

# 浏览器兼容性

Chrome Edge Firefox Opera Safari IE
√( 29 ) √( 12 ) √( 20 ) √( 12.1 ) √( 9 ) √( 11 )

# 语法

flex-grow: <number>;

# 默认值

0

# 示例

hello uni-app x

扫码体验(手机浏览器跳转到App直达页)

Template

<template>
  <view style="flex-grow: 1">
    <view>
      <text>flex-grow</text>
      <view style="
          width: 250px;
          height: 150px;
          background-color: gray;
          flex-direction: row;
        ">
        <view class="common" style="background-color: red; flex-grow: 0.5">
          <text>0.5</text>
        </view>
        <view class="common" style="background-color: green; flex-grow: 1">
          <text>1</text>
        </view>
        <view class="common" style="background-color: blue; flex-grow: 2">
          <text>2</text>
        </view>
      </view>
    </view>
  </view>
</template>

<style>
  .common {
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
  }
</style>

# 参见