aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/flex_value/index.html
blob: 9aedc6c3e1a4524c35a0799c882bb474d79d16f2 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: <flex>
slug: Web/CSS/flex_value
tags:
  - CSS
  - CSS数据类型
  - Web
  - 参考
  - 布局
  - 需浏览器兼容
translation_of: Web/CSS/flex_value
---
<div>{{CSSRef}}</div>

<p><strong><code>&lt;flex&gt;</code></strong> <a href="/zh-CN/docs/Web/CSS">CSS</a> <a href="/zh-CN/docs/Web/CSS/CSS_Types">数据类型</a> 表示了网格(grid)容器中的一段可变长度。于{{cssxref("grid-template-columns")}}{{cssxref("grid-template-rows")}}及相关属性中使用。</p>

<h2 id="语法">语法</h2>

<p><code>&lt;flex&gt;</code>数据类型为一{{cssxref("&lt;number&gt;")}}后加单位<a id="fr" name="fr"><code>fr</code></a>。与所有CSS尺寸相同,单位与数字间无空格。</p>

<h2 id="Examples">Examples</h2>

<pre class="brush: css">1fr    /* 使用整型 */
2.5fr  /* 使用浮点 */
</pre>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">注释</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("CSS Grid", "#typedef-flex", "&lt;flex&gt;")}}</td>
   <td>{{Spec2("CSS Grid")}}</td>
   <td>初步定义</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>



<p>{{Compat("css.types.flex")}}</p>

<h2 id="See_also">See also</h2>

<ul>
 <li><a href="/zh-CN/docs/Web/CSS/CSS_Grid_Layout">CSS网格布局</a></li>
</ul>