Skip to content

Commit 93f54a9

Browse files
authored
Consistency: visual formatting model (mdn#38429)
* Case consistency: visual formatting model * minor tweaks
1 parent 7526c9b commit 93f54a9

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

files/en-us/web/css/css_box_model/introduction_to_the_css_box_model/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Finally, note that for non-replaced inline elements, the amount of space taken u
5050
- [Specificity](/en-US/docs/Web/CSS/CSS_cascade/Specificity)
5151
- [Inheritance](/en-US/docs/Web/CSS/CSS_cascade/Inheritance)
5252
- [Layout modes](/en-US/docs/Web/CSS/Layout_mode)
53-
- [Visual formatting models](/en-US/docs/Web/CSS/Visual_formatting_model)
53+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)
5454
- [Margin collapsing](/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing)
5555
- Values
5656
- [Initial values](/en-US/docs/Web/CSS/CSS_cascade/initial_value)

files/en-us/web/css/css_box_model/mastering_margin_collapsing/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ p {
8080
- [Inheritance](/en-US/docs/Web/CSS/CSS_cascade/Inheritance)
8181
- [Box model](/en-US/docs/Web/CSS/CSS_box_model/Introduction_to_the_CSS_box_model)
8282
- [Layout modes](/en-US/docs/Web/CSS/Layout_mode)
83-
- [Visual formatting models](/en-US/docs/Web/CSS/Visual_formatting_model)
83+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)
8484
- Values
8585
- [Initial values](/en-US/docs/Web/CSS/CSS_cascade/initial_value)
8686
- [Computed values](/en-US/docs/Web/CSS/CSS_cascade/computed_value)

files/en-us/web/css/css_cascade/actual_value/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The {{glossary("user agent")}} performs four steps to calculate a property's act
3434
- [Inheritance](/en-US/docs/Web/CSS/CSS_cascade/Inheritance)
3535
- [Box model](/en-US/docs/Web/CSS/CSS_box_model/Introduction_to_the_CSS_box_model)
3636
- [Layout modes](/en-US/docs/Web/CSS/Layout_mode)
37-
- [Visual formatting models](/en-US/docs/Web/CSS/Visual_formatting_model)
37+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)
3838
- [Margin collapsing](/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing)
3939
- Values
4040
- [Initial values](/en-US/docs/Web/CSS/CSS_cascade/initial_value)

files/en-us/web/css/css_cascade/computed_value/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ However, for some properties (those where percentages are relative to something
3636
- [Inheritance](/en-US/docs/Web/CSS/CSS_cascade/Inheritance)
3737
- [Box model](/en-US/docs/Web/CSS/CSS_box_model/Introduction_to_the_CSS_box_model)
3838
- [Layout modes](/en-US/docs/Web/CSS/Layout_mode)
39-
- [Visual formatting models](/en-US/docs/Web/CSS/Visual_formatting_model)
39+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)
4040
- [Margin collapsing](/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing)
4141
- Values
4242
- [Initial values](/en-US/docs/Web/CSS/CSS_cascade/initial_value)

files/en-us/web/css/css_cascade/initial_value/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can explicitly specify the initial value by using the {{cssxref("initial")}}
3434
- [Inheritance](/en-US/docs/Web/CSS/CSS_cascade/Inheritance)
3535
- [Box model](/en-US/docs/Web/CSS/CSS_box_model/Introduction_to_the_CSS_box_model)
3636
- [Layout modes](/en-US/docs/Web/CSS/Layout_mode)
37-
- [Visual formatting models](/en-US/docs/Web/CSS/Visual_formatting_model)
37+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)
3838
- [Margin collapsing](/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing)
3939
- Values
4040
- [Computed values](/en-US/docs/Web/CSS/CSS_cascade/computed_value)

files/en-us/web/css/css_cascade/used_value/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ CSS 2.0 defined only _computed value_ as the last step in a property's calculati
111111
- [Inheritance](/en-US/docs/Web/CSS/CSS_cascade/Inheritance)
112112
- [Box model](/en-US/docs/Web/CSS/CSS_box_model/Introduction_to_the_CSS_box_model)
113113
- [Layout modes](/en-US/docs/Web/CSS/Layout_mode)
114-
- [Visual formatting models](/en-US/docs/Web/CSS/Visual_formatting_model)
114+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)
115115
- [Margin collapsing](/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing)
116116
- Values
117117
- [Initial values](/en-US/docs/Web/CSS/CSS_cascade/initial_value)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ strong {
195195

196196
{{EmbedLiveSample("line-box")}}
197197

198-
Find out more about how Block and Inline Boxes behave in our Guide to the [Visual Formatting Model](/en-US/docs/Web/CSS/Visual_formatting_model).
198+
Find out more about how block and inline boxes behave in our guide to the [visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model).
199199

200200
## The display property and flow layout
201201

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,5 @@ In this guide, we have looked in more detail at the block and Inline formatting
185185
## See also
186186

187187
- [Block formatting context](/en-US/docs/Web/CSS/CSS_display/Block_formatting_context)
188-
- [Visual Formatting Model](/en-US/docs/Web/CSS/Visual_formatting_model)
188+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)
189189
- [CSS Box Model](/en-US/docs/Web/CSS/CSS_box_model)

files/en-us/web/css/css_values_and_units/value_definition_syntax/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ Here are some more examples:
449449
- [Inheritance](/en-US/docs/Web/CSS/CSS_cascade/Inheritance)
450450
- [Box model](/en-US/docs/Web/CSS/CSS_box_model/Introduction_to_the_CSS_box_model)
451451
- [Layout modes](/en-US/docs/Web/CSS/Layout_mode)
452-
- [Visual formatting models](/en-US/docs/Web/CSS/Visual_formatting_model)
452+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)
453453
- [Margin collapsing](/en-US/docs/Web/CSS/CSS_box_model/Mastering_margin_collapsing)
454454
- Values
455455
- [Initial values](/en-US/docs/Web/CSS/CSS_cascade/initial_value)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,4 +228,4 @@ body {
228228
## See also
229229

230230
- [Block formatting context](/en-US/docs/Web/CSS/CSS_display/Block_formatting_context)
231-
- [Visual Formatting Model](/en-US/docs/Web/CSS/Visual_formatting_model)
231+
- [Visual formatting model](/en-US/docs/Web/CSS/Visual_formatting_model)

0 commit comments

Comments
 (0)