简体中文
CSS 属性 flex-grow CSS 设置 flex 项 主尺寸 的 flex 增长系数。
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
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>