diff --git a/guide/english/html/css-classes/index.md b/guide/english/html/css-classes/index.md index faf3047952..35dd3bcfb0 100644 --- a/guide/english/html/css-classes/index.md +++ b/guide/english/html/css-classes/index.md @@ -28,7 +28,7 @@ You can also declare more than one class to your element, like: ```html -
+
We're going to save you.
@@ -38,7 +38,7 @@ Then in your css file: ```css -.ironMan{ +.iron-man{ color:red; } @@ -52,7 +52,7 @@ Then in your css file: You can also combine classes in the same line: ```css -.superMan .spiderMan { +.super-man .spider-man { color: red; background-color: blue; }