Fixed Class Names (#26547)

This commit is contained in:
LadyTano
2018-10-23 21:28:30 -07:00
committed by Kristofer Koishigawa
parent bf171cc7a2
commit acf001941a

View File

@ -28,7 +28,7 @@ You can also declare more than one class to your element, like:
```html
<div class="ironMan alfred">
<div class="iron-man alfred">
We're going to save you.
</div>
@ -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;
}