Skip to content

Commit 113279a

Browse files
authored
move guide to module: inline formatting context (#38637)
* move guide to module * edits based on move * removed link * Update index.md
1 parent 16e8ac8 commit 113279a

File tree

7 files changed

+22
-13
lines changed

7 files changed

+22
-13
lines changed

files/en-us/_redirects.txt

+1
Original file line numberDiff line numberDiff line change
@@ -12161,6 +12161,7 @@
1216112161
/en-US/docs/Web/CSS/General_sibling_selectors /en-US/docs/Web/CSS/Subsequent-sibling_combinator
1216212162
/en-US/docs/Web/CSS/Grouping_selectors /en-US/docs/Web/CSS/Selector_list
1216312163
/en-US/docs/Web/CSS/Inheritance /en-US/docs/Web/CSS/CSS_cascade/Inheritance
12164+
/en-US/docs/Web/CSS/Inline_formatting_context /en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context
1216412165
/en-US/docs/Web/CSS/Interactive /en-US/docs/Web/CSS/@media
1216512166
/en-US/docs/Web/CSS/Layout_cookbook/Recipe:_Media_Objects /en-US/docs/Web/CSS/Layout_cookbook/Media_objects
1216612167
/en-US/docs/Web/CSS/Layout_mode /en-US/docs/Glossary/Layout_mode

files/en-us/_wikihistory.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -77333,6 +77333,10 @@
7733377333
"BenoitL"
7733477334
]
7733577335
},
77336+
"Web/CSS/CSS_inline_layout/Inline_formatting_context": {
77337+
"modified": "2020-04-27T22:33:13.546Z",
77338+
"contributors": ["pans9", "chrisdavidmills", "rachelandrew"]
77339+
},
7733677340
"Web/CSS/CSS_lists": {
7733777341
"modified": "2020-07-07T12:20:22.683Z",
7733877342
"contributors": [
@@ -78391,10 +78395,6 @@
7839178395
"miken32"
7839278396
]
7839378397
},
78394-
"Web/CSS/Inline_formatting_context": {
78395-
"modified": "2020-04-27T22:33:13.546Z",
78396-
"contributors": ["pans9", "chrisdavidmills", "rachelandrew"]
78397-
},
7839878398
"Web/CSS/Layout_cookbook": {
7839978399
"modified": "2020-07-07T12:18:05.178Z",
7840078400
"contributors": [

files/en-us/glossary/inline-level_content/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ body {
4646

4747
- Related glossary terms:
4848
- {{Glossary("Block-level content")}}
49-
- [Inline formatting context](/en-US/docs/Web/CSS/Inline_formatting_context)
49+
- [Inline formatting context](/en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context)
5050
- {{cssxref("display")}}

files/en-us/web/api/document_object_model/whitespace/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The `<h1>` element contains only inline elements. In fact it contains:
9191
- An inline element (the `<span>`, which contains a space, and the word "World!").
9292
- Another text node (consisting only of tabs and spaces).
9393

94-
Because of this, it establishes what is called an [inline formatting context](/en-US/docs/Web/CSS/Inline_formatting_context). This is one of the possible layout rendering contexts that browser engines work with.
94+
Because of this, it establishes what is called an [inline formatting context](/en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context). This is one of the possible layout rendering contexts that browser engines work with.
9595

9696
Inside this context, whitespace character processing can be summarized as follows:
9797

files/en-us/web/css/css_display/index.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ The **CSS display** module defines how the CSS formatting box tree is generated
3232
- [Block formatting context (BFC)](/en-US/docs/Web/CSS/CSS_display/Block_formatting_context)
3333
- {{glossary("Block-level content")}}
3434
- [Containing block](/en-US/docs/Web/CSS/CSS_display/Containing_block)
35-
- {{glossary("Flex")}}
3635
- [Flow layout](/en-US/docs/Web/CSS/CSS_display/Flow_layout)
37-
- {{glossary("Grid")}}
38-
- [Inline formatting context](/en-US/docs/Web/CSS/Inline_formatting_context)
39-
- {{glossary("Inline-level content")}}
4036
- {{glossary("Replaced elements")}}
4137
- {{glossary("Ruby")}}
4238

@@ -59,8 +55,15 @@ The **CSS display** module defines how the CSS formatting box tree is generated
5955

6056
### Properties
6157

62-
- {{cssxref("transition-behavior")}}
6358
- {{cssxref("overflow")}}
59+
- {{cssxref("transition-behavior")}}
60+
61+
### Glossary and terms
62+
63+
- {{glossary("Flex")}}
64+
- {{glossary("Grid")}}
65+
- [Inline formatting context](/en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context)
66+
- {{glossary("Inline-level content")}}
6467

6568
### Guides
6669

files/en-us/web/css/css_inline_layout/index.md

+5
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ The specification also defines the `baseline-shift`, `baseline-source`, `initial
3333
- {{glossary("baseline/typography", "baseline")}}
3434
- {{glossary("leading")}}
3535

36+
## Guides
37+
38+
- [Inline formatting context](/en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context)
39+
- : Explains the inline formatting context.
40+
3641
## Related concepts
3742

3843
- {{cssxref("font-size")}} property

files/en-us/web/css/inline_formatting_context/index.md files/en-us/web/css/css_inline_layout/inline_formatting_context/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Inline formatting context
3-
slug: Web/CSS/Inline_formatting_context
3+
slug: Web/CSS/CSS_inline_layout/Inline_formatting_context
44
page-type: guide
55
---
66

77
{{CSSRef}}
88

9-
This article explains the inline formatting context.
9+
This guide explains the inline formatting context.
1010

1111
## Core concepts
1212

0 commit comments

Comments
 (0)