Skip to content

Commit 0f358cf

Browse files
authored
Update README.md
1 parent 1531bb8 commit 0f358cf

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

exercises/04-list-styling/README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tutorial: "https://www.youtube.com/watch?v=i7UegJUGnRs"
44

55
# `04` List styling
66

7-
In the front end we often have to list items and the way to do that is with `<ul>` tags, for unordered/bulleted lists, and `<ol>` tags for ordered/numbered lists.
7+
In the front end, we often have to list items, and the way to do that is with `<ul>` tags, for unordered/bulleted lists, and `<ol>` tags for ordered/numbered lists.
88

99
We have CSS control over what these lists look like, what bullets or numbers they use, etc.
1010

@@ -18,7 +18,7 @@ For example:
1818
}
1919
```
2020

21-
Will remove the numbers or bullets and will move the text to the left so there is no empty space where the bullets once were.
21+
This will remove the numbers or bullets and will move the text to the left so there is no empty space where the bullets once were.
2222

2323
**Note:**
2424

@@ -27,13 +27,14 @@ Then make the changes below and run again.
2727

2828
## 📝 Instructions:
2929

30-
1. Make the Coca Cola drink numbers into lower case letters.
31-
2. Make the Pepsi drink numbers into square bullets.
32-
3. Make the Healthy drink bullets into Armenian numbers.
33-
4. Completely remove the bullets and extra spacing from the Web-developer drinks.
30+
1. Make the Coca Cola drinks numbers into lowercase letters.
31+
2. Make the Pepsi drinks numbers into square bullets.
32+
3. Make the Healthy drinks bullets into Armenian numbers.
33+
4. Completely remove the bullets from the web-developer drinks.
3434

3535
## 💡 Hints:
3636

3737
- How to work with CSS list styles: https://www.w3schools.com/css/css_list.asp
38-
- Changing bullets into numbers and vice versa means that you would need to change the type of list - ordered or unordered. Changes in the html tags may be necessary.
39-
- `armenian` is an actual possible value of `list-style-type`: https://www.w3schools.com/cssref/pr_list-style-type.asp
38+
- Changing bullets into numbers and vice versa means that you would need to change the type of list - ordered or unordered. Changes in the HTML tags may be necessary.
39+
- `armenian` is an actual possible value of `list-style-type`: https://www.w3schools.com/cssref/pr_list-style-type.asp
40+

0 commit comments

Comments
 (0)