You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
8
8
9
9
We have CSS control over what these lists look like, what bullets or numbers they use, etc.
10
10
@@ -18,7 +18,7 @@ For example:
18
18
}
19
19
```
20
20
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.
22
22
23
23
**Note:**
24
24
@@ -27,13 +27,14 @@ Then make the changes below and run again.
27
27
28
28
## 📝 Instructions:
29
29
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.
34
34
35
35
## 💡 Hints:
36
36
37
37
- 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
0 commit comments