Lecture on Lists 03/11/2024
List HTML:
Unordered List -
Ordered List -
- 1
- 2
- 3
- 4
- 5
Ordered List Reverse-
- 1
- 2
- 3
- 4
- 5
Ordered List not Starting at 1 -
- 1
- 2
- 3
- 4
- 5
Nested Lists -
- 1
- 2
- 3
- 4
List CSS:
ul, ol {
list-style:none;
list-style:disc;
list-style:square;
list-style:decimal-leading-zero;
list-style:lower-roman;
}
ol li: :marker {
color: red;
font-weight: bold;
content:"<3"
}
Pagination for blog posts
HTML:
- 1
CSS:
ol {
display: flex;
list-style: none;
}
For assignment, ensure that you do the hover component where the color of the text changes when you hover over the navigation menu
.my-menu li a:hover svg {
fill: red;
}