diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json
index 710f8b441a..586c789a88 100644
--- a/seed/challenges/html5-and-css.json
+++ b/seed/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
.')",