diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column.md index a7b859fc7f..64b7286f8d 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column.md @@ -15,7 +15,7 @@ However, using the `flex-wrap` property tells CSS to wrap items. This means extr CSS also has options for the direction of the wrap: -
nowrap
: this is the default setting, and does not wrap items.wrap
: wraps items from left-to-right if they are in a row, or top-to-bottom if they are in a column.wrap-reverse
: wraps items from right-to-left if they are in a row, or bottom-to-top if they are in a column.nowrap
: this is the default setting, and does not wrap items.wrap
: wraps items onto multiple lines from top-to-bottom if they are in rows and left-to-right if they are in columns.wrap-reverse
: wraps items onto multiple lines from bottom-to-top if they are in rows and right-to-left if they are in columns.