From c21b2a9707b2cb2eba4f61ac196bd56e1e143874 Mon Sep 17 00:00:00 2001 From: Keith Date: Wed, 3 Feb 2021 16:11:44 -0700 Subject: [PATCH] fix(learn): corrected typo (#40902) Fixed typo at the end of the 4th paragraph. Changed "Others options include:" to "Other options include:". --- .../align-elements-using-the-justify-content-property.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.md index 148440b9ce..8639b8d144 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.md @@ -15,7 +15,7 @@ Sometimes the flex items within a flex container do not fill all the space in th Recall that setting a flex container as a row places the flex items side-by-side from left-to-right. A flex container set as a column places the flex items in a vertical stack from top-to-bottom. For each, the direction the flex items are arranged is called the **main axis**. For a row, this is a horizontal line that cuts through each item. And for a column, the main axis is a vertical line through the items. -There are several options for how to space the flex items along the line that is the main axis. One of the most commonly used is `justify-content: center;`, which aligns all the flex items to the center inside the flex container. Others options include: +There are several options for how to space the flex items along the line that is the main axis. One of the most commonly used is `justify-content: center;`, which aligns all the flex items to the center inside the flex container. Other options include: