From f3556036f05cdd97c01f415879b1d5a26ca85951 Mon Sep 17 00:00:00 2001 From: jeremycpc Date: Mon, 7 Jan 2019 01:21:13 +0800 Subject: [PATCH] Added additional note on flexbox (#26472) --- guide/english/css/css3-flexible-box/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/css/css3-flexible-box/index.md b/guide/english/css/css3-flexible-box/index.md index 233da8cb59..38b2340841 100644 --- a/guide/english/css/css3-flexible-box/index.md +++ b/guide/english/css/css3-flexible-box/index.md @@ -56,6 +56,8 @@ There are three slightly more interesting options for `justify-content` you migh `flex-start`, `center` and `flex-end` behave as before - left, center and right have become top, center and bottom. Other options are `baseline`, whereby all children will centralize themselves down a single baseline, and `stretch`, whereby they will stretch to fill the container. +Note that when you apply a display "flex" on the parent container, it will only affect direct children properties. You can nest flexboxes as well. + #### More Information