From 2deb79219decc6ddd0ae58366456566aad88d128 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Sun, 31 May 2015 12:03:59 -0700 Subject: [PATCH] minor fix recommended by @eabedrapo --- seed_data/challenges/basic-html5-and-css.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json index b178c9607d7..faa282b06eb 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -2599,8 +2599,7 @@ "description": [ "Use Clockwise Notation to give the \".green-box\" class a padding of 40 pixels on its top and left side, but only 20 pixels on its bottom and right side.", "Instead of specifying an element's padding-top, padding-right, padding-bottom, and padding-left attributes, you can specify them all in one line, like this: padding: 10px 20px 10px 20px;.", - "These four values work like a clock: top, right, bottom, left, and will produce the exact same result as using the side-specific padding instructions.", - "You can also use this notation for margins!" + "These four values work like a clock: top, right, bottom, left, and will produce the exact same result as using the side-specific padding instructions." ], "tests": [ "assert($('.green-box').css('padding-top') === '40px', 'Your green-box class should give the top of elements 40px of padding.')",