Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move guide to module: inline formatting context #38637

Merged
merged 4 commits into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions files/en-us/_redirects.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12161,6 +12161,7 @@
/en-US/docs/Web/CSS/General_sibling_selectors /en-US/docs/Web/CSS/Subsequent-sibling_combinator
/en-US/docs/Web/CSS/Grouping_selectors /en-US/docs/Web/CSS/Selector_list
/en-US/docs/Web/CSS/Inheritance /en-US/docs/Web/CSS/CSS_cascade/Inheritance
/en-US/docs/Web/CSS/Inline_formatting_context /en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context
/en-US/docs/Web/CSS/Interactive /en-US/docs/Web/CSS/@media
/en-US/docs/Web/CSS/Layout_cookbook/Recipe:_Media_Objects /en-US/docs/Web/CSS/Layout_cookbook/Media_objects
/en-US/docs/Web/CSS/Layout_mode /en-US/docs/Glossary/Layout_mode
Expand Down
8 changes: 4 additions & 4 deletions files/en-us/_wikihistory.json
Original file line number Diff line number Diff line change
Expand Up @@ -77333,6 +77333,10 @@
"BenoitL"
]
},
"Web/CSS/CSS_inline_layout/Inline_formatting_context": {
"modified": "2020-04-27T22:33:13.546Z",
"contributors": ["pans9", "chrisdavidmills", "rachelandrew"]
},
"Web/CSS/CSS_lists": {
"modified": "2020-07-07T12:20:22.683Z",
"contributors": [
Expand Down Expand Up @@ -78391,10 +78395,6 @@
"miken32"
]
},
"Web/CSS/Inline_formatting_context": {
"modified": "2020-04-27T22:33:13.546Z",
"contributors": ["pans9", "chrisdavidmills", "rachelandrew"]
},
"Web/CSS/Layout_cookbook": {
"modified": "2020-07-07T12:18:05.178Z",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/glossary/inline-level_content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ body {

- Related glossary terms:
- {{Glossary("Block-level content")}}
- [Inline formatting context](/en-US/docs/Web/CSS/Inline_formatting_context)
- [Inline formatting context](/en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context)
- {{cssxref("display")}}
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The `<h1>` element contains only inline elements. In fact it contains:
- An inline element (the `<span>`, which contains a space, and the word "World!").
- Another text node (consisting only of tabs and spaces).

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.
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.

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

Expand Down
13 changes: 8 additions & 5 deletions files/en-us/web/css/css_display/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,7 @@ The **CSS display** module defines how the CSS formatting box tree is generated
- [Block formatting context (BFC)](/en-US/docs/Web/CSS/CSS_display/Block_formatting_context)
- {{glossary("Block-level content")}}
- [Containing block](/en-US/docs/Web/CSS/CSS_display/Containing_block)
- {{glossary("Flex")}}
- [Flow layout](/en-US/docs/Web/CSS/CSS_display/Flow_layout)
- {{glossary("Grid")}}
- [Inline formatting context](/en-US/docs/Web/CSS/Inline_formatting_context)
- {{glossary("Inline-level content")}}
- {{glossary("Replaced elements")}}
- {{glossary("Ruby")}}

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

### Properties

- {{cssxref("transition-behavior")}}
- {{cssxref("overflow")}}
- {{cssxref("transition-behavior")}}

### Glossary and terms

- {{glossary("Flex")}}
- {{glossary("Grid")}}
- [Inline formatting context](/en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context)
- {{glossary("Inline-level content")}}

### Guides

Expand Down
5 changes: 5 additions & 0 deletions files/en-us/web/css/css_inline_layout/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ The specification also defines the `baseline-shift`, `baseline-source`, `initial
- {{glossary("baseline/typography", "baseline")}}
- {{glossary("leading")}}

## Guides

- [Inline formatting context](/en-US/docs/Web/CSS/CSS_inline_layout/Inline_formatting_context)
- : Explains the inline formatting context.

## Related concepts

- {{cssxref("font-size")}} property
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: Inline formatting context
slug: Web/CSS/Inline_formatting_context
slug: Web/CSS/CSS_inline_layout/Inline_formatting_context
page-type: guide
---

{{CSSRef}}

This article explains the inline formatting context.
This guide explains the inline formatting context.

## Core concepts

Expand Down