From 9203192a218268d6e7bb58522da6f3ca91907131 Mon Sep 17 00:00:00 2001 From: David Golightly Date: Wed, 7 Feb 2018 11:07:17 -0800 Subject: [PATCH] fix(challenges): Add more examples of text-align CSS property (#16624) Closes #16446 --- .../01-responsive-web-design/applied-visual-design.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/seed/challenges/01-responsive-web-design/applied-visual-design.json b/seed/challenges/01-responsive-web-design/applied-visual-design.json index 8d8a05587d..7ac3e4b645 100644 --- a/seed/challenges/01-responsive-web-design/applied-visual-design.json +++ b/seed/challenges/01-responsive-web-design/applied-visual-design.json @@ -29,7 +29,10 @@ "description": [ "This section of the curriculum focuses on Applied Visual Design. The first group of challenges build on the given card layout to show a number of core principles.", "Text is often a large part of web content. CSS has several options for how to align it with the text-align property.", - "The justify property causes all lines of text except the last line to meet the left and right edges of the line box.", + "text-align: justify; causes all lines of text except the last line to meet the left and right edges of the line box.", + "text-align: center; centers the text", + "text-align: right; right-aligns the text", + "And text-align: left; (the default) left-aligns the text.", "
", "Align the h4 tag's text, which says \"Google\", to the center. Then justify the paragraph tag which contains information about how Google was founded." ],