diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json
index 02e1cb1c7e..68cd132523 100644
--- a/seed/challenges/html5-and-css.json
+++ b/seed/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
.')",