diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.english.md
index 4c439046f4..a9e6e8510e 100644
--- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.english.md
@@ -11,7 +11,7 @@ The align-items
property is similar to justify-content
Flex containers also have a cross axis which is the opposite of the main axis. For rows, the cross axis is vertical and for columns, the cross axis is horizontal.
CSS offers the align-items
property to align flex items along the cross axis. For a row, it tells CSS how to push the items in the entire row up or down within the container. And for a column, how to push all the items left or right within the container.
The different values available for align-items
include:
-
flex-start
: aligns items to the start of the flex container. For rows, this aligns items to the top of the container. For columns, this aligns items to the left of the container.flex-end
: aligns items to the end of the flex container. For rows, this aligns items to the bottom of the container. For columns, this aligns items to the right of the container.center
: align items to the center. For rows, this vertically aligns items (equal space above and below the items). For columns, this horizontally aligns them (equal space to the left and right of the items).stretch
: stretch the items to fill the flex container. For example, rows items are stretched to fill the flex container top-to-bottom.baseline
: align items to their baselines. Baseline is a text concept, think of it as the line that the letters sit on.flex-start
: aligns items to the start of the flex container. For rows, this aligns items to the top of the container. For columns, this aligns items to the left of the container.flex-end
: aligns items to the end of the flex container. For rows, this aligns items to the bottom of the container. For columns, this aligns items to the right of the container.center
: align items to the center. For rows, this vertically aligns items (equal space above and below the items). For columns, this horizontally aligns them (equal space to the left and right of the items).stretch
: stretch the items to fill the flex container. For example, rows items are stretched to fill the flex container top-to-bottom. This is the default value if no align-items
value is specified.baseline
: align items to their baselines. Baseline is a text concept, think of it as the line that the letters sit on.display: flex
to an element turns it into a flex container. This makes it possible to align any children of that element into rows or columns. You do this by adding the flex-direction
property to the parent item and setting it to row or column. Creating a row will align the children horizontally, and creating a column will align the children vertically.
Other options for flex-direction
are row-reverse and column-reverse.
-Noteflex-direction
property is row.
+Noteflex-direction
property is row
.
flex-direction
to the #box-container
element, and give it a value of row-reverse.
+Add the CSS property flex-direction
to the #box-container
element, and give it a value of row-reverse
.
justify-content
to the header's .profile
```yml
tests:
- - text: 'The .profile-name
element should have the justify-content
property set to any of these values: center, flex-start, flex-end, space-between, or space-around.'
+ - text: 'The .profile-name
element should have the justify-content
property set to any of these values: center
, flex-start
, flex-end
, space-between
, or space-around
.'
testString: 'assert(code.match(/header\s.profile-name\s*{\s*?.*?\s*?.*?\s*?\s*?.*?\s*?justify-content\s*:\s*(center|flex-start|flex-end|space-between|space-around)\s*;/g), ''The .profile-name
element should have the justify-content
property set to any of these values: center, flex-start, flex-end, space-between, or space-around.'');'
```