Hello there and thank you for stopping by!
I am facing a challenge with a list containing multiple nestings. I am interested in changing the order of these two lists, and I am curious if this is achievable using only CSS.
- List item 1
- List item 2
- List item 2.1
- List item 2.2
- List item 3
My desired order is as follows:
- List item 1
- List item 2
- List item 3
- List item 2.1
- List item 2.2
Due to the dynamic nature of the list's length, traditional methods like absolute positioning are not applicable in this case.