From 15ccc1a2e50851564d8711b48e3bf31b6555718f Mon Sep 17 00:00:00 2001 From: YexuanXiao Date: Tue, 14 Sep 2021 00:57:59 +0800 Subject: Re-translated from the English version to replace outdated content --- files/zh-cn/web/css/flex-grow/index.md | 143 +++++++++++++++------------------ 1 file changed, 66 insertions(+), 77 deletions(-) (limited to 'files/zh-cn/web/css') diff --git a/files/zh-cn/web/css/flex-grow/index.md b/files/zh-cn/web/css/flex-grow/index.md index cfc8dcdf50..fe1de14dd9 100644 --- a/files/zh-cn/web/css/flex-grow/index.md +++ b/files/zh-cn/web/css/flex-grow/index.md @@ -2,75 +2,83 @@ title: flex-grow slug: Web/CSS/flex-grow tags: - - CSS属性 + - CSS - CSS弹性盒 - 布局 - 网络 + - recipe:CSS属性 +browser-compat: css.properties.flex-grow translation_of: Web/CSS/flex-grow --- -
{{CSSRef}}
+{{CSSRef}} -

CSS属性 flex-grow设置了一个flex项主尺寸的flex增长系数。它指定了flex容器中剩余空间的多少应该分配给项目(flex增长系数)。

+CSS 属性 **`flex-grow`** [CSS](/en-US/docs/Web/CSS) 设置 flex 项[主尺寸](https://www.w3.org/TR/css-flexbox/#main-size) 的 flex 增长系数。 -

主尺寸是项的宽度或高度,这取决于{{cssxref("flex-direction")}}值。

+{{EmbedInteractiveExample("pages/css/flex-grow.html")}} -

剩余的空间是flex容器的大小减去所有flex项的大小加起来的大小。如果所有的兄弟项目都有相同的flex-grow系数,那么所有的项目将获得相同的剩余空间,否则将根据不同的flex-grow系数定义的比例进行分配。

+## 语法 -

flex-grow 与其他的flex属性{{cssxref("flex-shrink")}}和{{cssxref("flex-basis")}}一起使用,通常使用{{cssxref("flex")}} 速记来定义,以确保所有的值都被设置。

+满足[CSS 属性值定义语法](/zh-CN/docs/CSS/Value_definition_syntax) {{csssyntax("flex-grow")}}。 -
{{EmbedInteractiveExample("pages/css/flex-grow.html")}}
+```css +/* 值 */ +flex-grow: 3; +flex-grow: 0.6; - +/* 全局值 */ +flex-grow: inherit; +flex-grow: initial; +flex-grow: revert; +flex-grow: unset; +``` -

更多属性和信息请参见使用 CSS 弹性盒子

+`flex-grow` 的属性规定为一个 ``。 -

语法

+### 值 -
CSS 属性值定义语法: {{csssyntax("flex-grow")}}
-
+- `` + - : 参见 {{cssxref("<number>")}}。负值无效,默认为 0。 -
/* <number> values */
-flex-grow: 3;
-flex-grow: 0.6;
+## 描述
 
-/* 全局 values */
-flex-grow: inherit;
-flex-grow: initial;
-flex-grow: unset;
+这个属性规定了 `flex-grow` 项在 flex 容器中分配剩余空间的相对比例。 +[主尺寸](https://www.w3.org/TR/css-flexbox/#main-size)是项的宽度或高度,这取决于{{cssxref("flex-direction")}}值。 -

+剩余空间是 flex 容器的大小减去所有 flex 项的大小加起来的大小。如果所有的兄弟项目都有相同的 flex-grow 系数,那么所有的项目将剩余空间按相同比例分配,否则将根据不同的 flex-grow 定义的比例进行分配。 -
-
<number>
-
参见 {{cssxref("<number>")}}。负值无效,默认为0。
-
-

正式语法

+ `flex-grow` 与其他的 flex 属性{{cssxref("flex-shrink")}}和{{cssxref("flex-basis")}}一起使用,通常使用{{cssxref("flex")}} 速记来定义,以确保所有的值都被设置。

- {{csssyntax}} -
-
+## 正式定义 -

例子:

+{{cssinfo}} -

HTML

+## 正式语法 -
-
<h4>This is a Flex-Grow</h4>
-<h5>A,B,C and F are flex-grow:1 . D and E are flex-grow:2 .</h5>
-<div id="content">
-  <div class="box" style="background-color:red;">A</div>
-  <div class="box" style="background-color:lightblue;">B</div>
-  <div class="box" style="background-color:yellow;">C</div>
-  <div class="box1" style="background-color:brown;">D</div>
-  <div class="box1" style="background-color:lightgreen;">E</div>
-  <div class="box" style="background-color:brown;">F</div>
-</div>
+{{csssyntax}} -

CSS

+## 样例 -
#content {
+### 设置 flex 项目增长因子
+
+#### HTML
+
+```html
+

这展示了 flex 增长

+
A,B,C 和 F 具有 flex-grow:1。D 和 E 具有 flex-grow:2 .
+
+
A
+
B
+
C
+
D
+
E
+
F
+
+``` + +#### CSS + +```css +#content { display: flex; justify-content: space-around; @@ -86,43 +94,24 @@ flex-grow: unset;
.box1 { flex-grow: 2; border: 3px solid rgba(0,0,0,.2); -} -
- -

结果

+} +``` -

{{EmbedLiveSample('Example', '700px', '300px', '', 'Web/CSS/flex-grow')}}

+#### 结果 -

规范

+{{EmbedLiveSample('Setting_flex_item_grow_factor', '700px', '300px', '', 'Web/CSS/flex-grow')}} - - - - - - - - - - - - - - - -
规范状态备注
CSS灵活包装盒布局模块{{Spec2('CSS3 Flexbox')}}初步定义
+## 规范 -

{{cssinfo}}

+{{Specifications}} -

浏览器兼容性

+## 浏览器兼容性 -

{{Compat("css.properties.flex-grow")}}

+{{Compat}} -

参见

+## 参见 - +- [使用 CSS 弹性盒子](/zh-CN/docs/Web/CSS/CSS_Flexible_Box_Layout/Using_CSS_flexible_boxes) +- CSS Flexbox 指南:[弹性盒子的基本概念](/zh-CN/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox) +- CSS Flexbox 指南:[控制Flex子元素在主轴上的比例](/zh-CN/docs/Web/CSS/CSS_Flexible_Box_Layout/Controlling_Ratios_of_Flex_Items_Along_the_Main_Ax) +- [\`flex-grow\` is weird. Or is it?](https://css-tricks.com/flex-grow-is-weird/) Manuel Matuzovic 在 CSS-Tricks 上的文章,说明了 flex-grow 的工作原理 -- cgit v1.2.3-54-g00ecf