From 9243a1832ff9e4f6eed3f32481b105ab7fb94aac Mon Sep 17 00:00:00 2001 From: Aniruddh Agarwal Date: Sun, 13 Sep 2015 07:40:17 +0800 Subject: [PATCH] Edited decription of html waypoint to include details --- seed/challenges/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json index 2b1d026865..b4aff4092f 100644 --- a/seed/challenges/html5-and-css.json +++ b/seed/challenges/html5-and-css.json @@ -866,7 +866,7 @@ "description": [ "CSS borders have properties like style, color and width.", "For example, if we wanted to create a red, 5 pixel border around an HTML element, we could use this class: <style> .thin-red-border { border-color: red; border-width: 5px; border-style: solid; } </style>.", - "Create a class called thick-green-border that puts a 10-pixel-wide green border with a style of solid around an HTML element, and apply that class to your cat photo." + "Create a class called thick-green-border that puts a 10-pixel-wide green border with a style of solid around an HTML element, and apply that class to your cat photo. You can apply multiple classes to elements by separating them with a space within the class attribute. For example, <element class=\"class1 class2\"></element>" ], "tests": [ "assert($(\"img\").hasClass(\"smaller-image\"), 'Your img element should have the class smaller-image.')",