Skip to content

Commit 2f9e3cf

Browse files
authored
Update README.md
1 parent 2489c68 commit 2f9e3cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/08-Style-without-id-class/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ Here you have a beautiful signup form, you can read the code to understand how i
77
Replace all the `.class` and `#id` selectors from index.html with other types of selectors to accomplish the same reference.
88
For example:
99

10-
For this html:
10+
For this HTML:
1111
```html
1212
<div><a class="myAnchor">Here is an anchor</a></div>
1313
```
1414

1515
Instead of doing
1616
```css
1717
<style>
18-
.myAnchor{ background: red; }
18+
.myAnchor { background: red; }
1919
</style>
2020
```
2121
Your could do
2222
```css
2323
<style>
24-
a{ background:red;}
24+
a { background:red; }
2525
</style>
2626
```
2727

0 commit comments

Comments
 (0)