List
Represents a <ul> or <ol> element
Usage Notes
Place anywhere on a page to create a list
Place within the List Item slot to create a nested list
Properties
Tag. Enter
ulorolList Items ( Slot ). Place list items here
Styling
Currently, Webflow does not have good component styling capabilities that can be used to expose these;
No component-property-linkable embeds within components
No Custom Property databinding for custom elements to component properties
Simple Variant styling, which doesn't support multi-dimensionality well
No option lists as property types
Here’s what styling an HTML list (<ul>, <ol>, <li>) supports directly or via CSS:
List type / bullet style:
list-style-typedisc→ ●circle→ ○square→ ■decimal→ 1. 2. 3.lower-roman→ i. ii. iii.upper-roman→ I. II. III.lower-alpha→ a. b. c.upper-alpha→ A. B. C.none→ removes bullets/numbers
List image:
list-style-image→ use a custom image or SVG as bullet
List position:
list-style-positioninside→ bullets inside content boxoutside→ bullets outside content box
Spacing / layout:
margin→ space around listpadding→ space inside list or itemsline-height→ vertical spacing between itemsgap→ spacing between items (in flex or grid contexts)
Marker styling (modern CSS):
::markerpseudo-element to style bullet or number:color
font-size
font-family
content (e.g. custom symbols)
Custom numbering (for
<ol>):startattribute to set initial numberreversedattribute to count backwardsCSS counters for fully custom sequences
All of these styles can be applied through CSS, making HTML lists highly customizable.
Last updated