From f6e24bf40dc958e7fb3cd958a6646a2c3b7de7f2 Mon Sep 17 00:00:00 2001 From: alanbares Date: Sun, 2 Oct 2016 19:13:56 -0700 Subject: [PATCH] Update challenge description for css classes in html elements --- .../01-front-end-development-certification/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/html5-and-css.json b/challenges/01-front-end-development-certification/html5-and-css.json index a56c0c4caa..3967212577 100644 --- a/challenges/01-front-end-development-certification/html5-and-css.json +++ b/challenges/01-front-end-development-certification/html5-and-css.json @@ -711,7 +711,7 @@ "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 class selectors require a period at the beginning like this:", "
.blue-text {
  color: blue;
}
", - "But also remember that class declarations don't use a period, like this:", + "But remember you don't need to use a period when attaching classes to an html element:", "<h2 class=\"blue-text\">CatPhotoApp</h2>", "Apply the red-text class to your h2 and p elements." ],