From 122ca0c36013f944d244007c66291294b9036f58 Mon Sep 17 00:00:00 2001 From: Logan Tegman Date: Thu, 12 Nov 2015 08:38:14 -0800 Subject: [PATCH] Fix Waypoint Add Different Margins Instruction Order Closes #4327 --- challenges/html5-and-css.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json index 02e1cb1c7e..68cd132523 100644 --- a/challenges/html5-and-css.json +++ b/challenges/html5-and-css.json @@ -2939,9 +2939,9 @@ "id": "bad87fee1248bd9aedf08824", "title": "Add Different Margins to Each Side of an Element", "description": [ - "Give the green box a margin of 40px on its top and left side, but only 20px on its bottom and right side.", "Sometimes you will want to customize an element so that it has a different margin on each of its sides.", - "CSS allows you to control the margin of an element on all four sides with margin-top, margin-right, margin-bottom, and margin-left properties." + "CSS allows you to control the margin of an element on all four sides with margin-top, margin-right, margin-bottom, and margin-left properties.", + "Give the green box a margin of 40px on its top and left side, but only 20px on its bottom and right side." ], "tests": [ "assert($(\".green-box\").css(\"margin-top\") === \"40px\", 'Your green-box class should give the top of elements 40px of margin.')",