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