From cba3365f6f7f8825b11020261b35dd822dd451c9 Mon Sep 17 00:00:00 2001 From: Estelle Weyl <estelle@weyl.org> Date: Fri, 21 Jun 2024 11:58:26 -0700 Subject: [PATCH] minor: flexbox glossary nits (#34298) --- files/en-us/glossary/flexbox/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files/en-us/glossary/flexbox/index.md b/files/en-us/glossary/flexbox/index.md index 221223ba208df0f..fffc5c52550f1c6 100644 --- a/files/en-us/glossary/flexbox/index.md +++ b/files/en-us/glossary/flexbox/index.md @@ -6,9 +6,9 @@ page-type: glossary-definition {{GlossarySidebar}} -Flexbox is the commonly-used name for the [CSS Flexible Box Layout Module](https://www.w3.org/TR/css-flexbox-1/), a layout model for displaying items in a single dimension — as a row or as a column. +Flexbox is the commonly-used name for the [CSS flexible box layout module](/en-US/docs/Web/CSS/CSS_flexible_box_layout/), a layout model for displaying items in a single dimension — as a row or as a column. -In the specification, Flexbox is described as a layout model for user interface design. The key feature of Flexbox is the fact that items in a flex layout can grow and shrink. Space can be assigned to the items themselves, or distributed between or around the items. +In the specification, flexbox is described as a layout model for user interface design. The key feature of flexbox is that items in a flex layout can grow and shrink. Space can be assigned to the items themselves, or distributed between or around the items. Flexbox also enables alignment of items on the main or cross axis, thus providing a high level of control over the size and alignment of a group of items. @@ -31,12 +31,12 @@ Flexbox also enables alignment of items on the main or cross axis, thus providin ### Further reading -- _[CSS Flexible Box Layout Module Level 1 Specification](https://www.w3.org/TR/css-flexbox-1/)_ -- CSS Flexbox Guide: - - [Basic Concepts of Flexbox](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Basic_concepts_of_flexbox) +- CSS flexbox guides: + - [Basic concepts of flexbox](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Basic_concepts_of_flexbox) - [Relationship of flexbox to other layout methods](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Relationship_of_flexbox_to_other_layout_methods) - [Aligning items in a flex container](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Aligning_items_in_a_flex_container) - [Ordering flex items](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Ordering_flex_items) - - [Controlling Ratios of flex items along the main axis](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Controlling_ratios_of_flex_items_along_the_main_axis) + - [Controlling ratios of flex items along the main axis](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Controlling_ratios_of_flex_items_along_the_main_axis) - [Mastering wrapping of flex items](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Mastering_wrapping_of_flex_items) - [Typical use cases of flexbox](/en-US/docs/Web/CSS/CSS_flexible_box_layout/Typical_use_cases_of_flexbox) +- _[CSS Flexible Box Layout Module Level 1 Specification](https://www.w3.org/TR/css-flexbox-1/)_