From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/css/flex-flow/index.html | 110 +++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 files/zh-cn/web/css/flex-flow/index.html (limited to 'files/zh-cn/web/css/flex-flow') diff --git a/files/zh-cn/web/css/flex-flow/index.html b/files/zh-cn/web/css/flex-flow/index.html new file mode 100644 index 0000000000..bbdf1afc30 --- /dev/null +++ b/files/zh-cn/web/css/flex-flow/index.html @@ -0,0 +1,110 @@ +--- +title: flex-flow +slug: Web/CSS/flex-flow +translation_of: Web/CSS/flex-flow +--- +
{{ CSSRef("CSS Flexible Boxes") }}
+ +

概述

+ +

+ CSS flex-flow 属性是 flex-direction 和 flex-wrap 的简写。 +

+ +

{{cssinfo}}

+ +

更多信息参见 使用 CSS 弹性盒

+ +

语法

+ +
Formal syntax: {{csssyntax("flex-flow")}}
+ +

取值

+ +

更多取值信息请查看 flex-directionflex-wrap

+ +

示例

+ +
element {
+  /* Main-axis is the block direction with reversed main-start and main-end. Flex items are laid out in multiple lines */
+  flex-flow: column-reverse wrap;
+}
+
+ +

查询参考

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
CSS Flexible Box Layout Module{{ Spec2('CSS3 Flexbox') }} 
+ +

浏览器兼容性

+ +

{{ CompatibilityTable() }}

+ +
+ + + + + + + + + + + + + + + + + + + +
特性Firefox (Gecko)ChromeInternet ExplorerOperaSafari
基础支持28.0 +

21.0{{property_prefix("-webkit")}}
+ 29.0

+
1112.106.1{{ property_prefix("-webkit") }}
+
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureFirefox Mobile (Gecko)AndroidIE PhoneOpera MobileSafari Mobile
基础支持28.0{{ CompatUnknown() }}1112.107.1{{ property_prefix("-webkit") }}
+
+ +

另参见

+ + -- cgit v1.2.3-54-g00ecf