Nested Lists ❺
Style Webflow's nested lists within rich text blocks
Ordered List Styling
Basic Styling 1. A. a.
<style>
ol[role="list"] {
list-style-type: decimal;
}
ol[role="list"] > li > ol[role="list"] {
list-style-type: upper-alpha;
}
ol[role="list"] > li > ol[role="list"] > li > ol[role="list"] {
list-style-type: lower-alpha;
}
</style>Technical Styling
Last updated