Skip to content

Commit f1eee10

Browse files
authored
Update README.md
1 parent 313b397 commit f1eee10

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

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

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,24 @@ Here you have a beautiful signup form, you can read the code to understand how i
44

55
## 📝 Instructions:
66

7-
Replace all the `.class` and `#id` selectors from index.html with other types of selectors to accomplish the same reference.
8-
For example:
7+
Replace all the `.class` and `#id` selectors from `index.html` with other types of selectors to accomplish the same reference. For example:
98

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

15-
Instead of doing
15+
Instead of doing:
16+
1617
```css
17-
<style>
1818
.myAnchor { background: red; }
19-
</style>
2019
```
21-
Your could do
20+
21+
You could do:
22+
2223
```css
23-
<style>
2424
a { background:red; }
25-
</style>
2625
```
2726

2827
The only class selector you can keep using is `.active`

0 commit comments

Comments
 (0)