From d5dac92d87b1f9ad25624bab9353aed8999a5dd0 Mon Sep 17 00:00:00 2001 From: Estelle Weyl Date: Thu, 14 Sep 2023 17:12:54 -0700 Subject: [PATCH] Update files/en-us/web/css/display/multi-keyword_syntax_of_display/index.md --- .../web/css/display/multi-keyword_syntax_of_display/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/css/display/multi-keyword_syntax_of_display/index.md b/files/en-us/web/css/display/multi-keyword_syntax_of_display/index.md index 65cac4181389a09..2b77b203c2803f6 100644 --- a/files/en-us/web/css/display/multi-keyword_syntax_of_display/index.md +++ b/files/en-us/web/css/display/multi-keyword_syntax_of_display/index.md @@ -75,7 +75,7 @@ The value `display: inline-block` has been around since the early days of CSS. T {{EmbedGHLiveSample("css-examples/display/multi-keyword/inline-block.html", '100%', 440)}} -An element with `display: inline-block` however, will also contain floats. It contains everything inside the inline-level box. Therefore `display: inline-block` does exactly what `display: flow-root` does, but with an inline-level, rather than a block-level box. The new syntax accurately describes what is happening with this value. In the example above, you can change `display: inline-block` to `display: inline flow-root` and get the same result. +An element with `display: inline-block` however, will also contain floats. It contains everything inside the inline-level box. Therefore `display: inline-block` does exactly what `display: flow-root` does, but with an inline-level, rather than a block-level box. The two-value syntax accurately describes what is happening with this value. In the example above, you can change `display: inline-block` to `display: inline flow-root` and get the same result. ## What about the old values of display?