From 159203aa6829f99eb1c9f5e4d2a003e8687c303a Mon Sep 17 00:00:00 2001 From: Niraj Nandish Date: Wed, 8 Aug 2018 13:27:00 +0400 Subject: [PATCH] fix(challenges): corrected challenge instructions --- .../01-responsive-web-design/applied-visual-design.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/challenges/01-responsive-web-design/applied-visual-design.json b/challenges/01-responsive-web-design/applied-visual-design.json index 51da359bf..c5dfbb300 100644 --- a/challenges/01-responsive-web-design/applied-visual-design.json +++ b/challenges/01-responsive-web-design/applied-visual-design.json @@ -309,7 +309,7 @@ "description": [ "To underline text, you can use the u tag. This is often used to signify that a section of text is important, or something to remember. With the u tag, the browser applies the CSS of text-decoration: underline; to the element.", "
", - "Wrap the u tag around the text \"Ph.D. students\". It should not include the parent div that has the class of cardText.", + "Wrap the u tag only around the text \"Ph.D. students\".", "Note
Try to avoid using the u tag when it could be confused for a link. Anchor tags also have a default underlined formatting." ], "tests": [ @@ -323,12 +323,6 @@ "The u tag should wrap around the text \"Ph.D. students\".", "testString": "assert($('u').text() === 'Ph.D. students', 'The u tag should wrap around the text \"Ph.D. students\".');" - }, - { - "text": - "The u tag should not wrap around the parent div tag.", - "testString": - "assert($('u').children('div').length === 0, 'The u tag should not wrap around the parent div tag.');" } ], "solutions": [],