From 3b0a75e6484145001950d6a87ed19de0609e1385 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6khan=20Gurbeto=C4=9Flu?= Date: Thu, 14 Mar 2019 17:14:21 +0300 Subject: [PATCH] Add default value for justify-content (#34419) According to the standard, the default value for justify-content if it is not specified is flex-start. Source: https://www.w3schools.com/cssref/css3_pr_justify-content.asp --- ...lign-elements-using-the-justify-content-property.english.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.english.md index 62337f8297..cc0afbeccc 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.english.md @@ -11,7 +11,8 @@ Sometimes the flex items within a flex container do not fill all the space in th Here is a useful image showing a row to illustrate the concepts below. 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: - + + ## Instructions