diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json
index ee4e1f6c87..7bdce36cdb 100644
--- a/challenges/html5-and-css.json
+++ b/challenges/html5-and-css.json
@@ -491,7 +491,7 @@
"description": [
"Apply the red-text
class to your h2
and p
elements.",
"Remember that you can attach classes to HTML elements by using class=\"your-class-here\"
within the relevant element's opening tag.",
- "Remember that CSS selectors require a period at the beginning like this: .blue-text { color: blue; }
, but that class declarations don't use a period, like this: <h2 class=\"blue-text\">CatPhotoApp<h2>
."
+ "Remember that CSS class selectors require a period at the beginning like this: .blue-text { color: blue; }
, but that class declarations don't use a period, like this: <h2 class=\"blue-text\">CatPhotoApp<h2>
."
],
"tests": [
"assert($(\"h2\").css(\"color\") === \"rgb(255, 0, 0)\", 'Your h2
element should be red.')",