Devlog - 2025-10-09
π What I Did
- Book inventory.
π§ What I Learned
Attribute Selector
- Used to target html based on their attributes.
a[href] {
color: blue;
text-decoration: underline;
}
Type attribute
type attribute can be set on an ol (ordered list).
- 1 for numerical lists (such as 1, 2, 3, β¦).
- A for uppercase alphabetical lists (such as A, B, C, β¦).
- a for lowercase alphabetical lists (such as a, b, c, β¦).
- I for uppercase Roman numerals (such as I, II, III, β¦).
- i for lowercase Roman numerals (such as i, ii, iii, β¦).
π₯ Whatβs Next
- Theory.
| β Previous | Next β |