From 986ad3662c28990bea9fc11b8a072d950366f270 Mon Sep 17 00:00:00 2001 From: Jakob Dahl Date: Tue, 18 Aug 2015 23:46:09 +0200 Subject: [PATCH] update seed for Override Styles in Subsequent CSS --- challenges/html5-and-css.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json index b7a82a256c..df039b3abd 100644 --- a/challenges/html5-and-css.json +++ b/challenges/html5-and-css.json @@ -3235,7 +3235,8 @@ "Our \"pink-text\" class overrode our body element's CSS declaration!", "We just proved that our classes will override the body element's CSS. So the next logical question is, what can we do to override our pink-text class?", "Create an additional CSS class called blue-text that gives an element the color blue. Make sure it's below your pink-text class declaration.", - "Apply the blue-text class to your h1 element in addition to your pink-text class, and let's see which one wins." + "Apply the blue-text class to your h1 element in addition to your pink-text class, and let's see which one wins.", + "Applying multiple class attributes to a HTML element is done with a space between them like this: class=\"class1 class2\"" ], "tests": [ "assert($(\"h1\").hasClass(\"pink-text\"), 'Your h1 element should have the class pink-text.')",