November 2024
Remove Markers and Padding from List Elements with CSS
Here's the code I use to turn off markers and padding for list elements:
CSS
}
}
}
}
Examples
Markers off
HTML
List with markers turned off
alfa
bravo
charlie
delta
echo
Output
List with markers turned off
- alfa
-
- bravo
- charlie
- delta
- echo
Note that turning off markers on a parent list does not remove them from children.
Remove padding
HTML
List with padding and markers both turned off
alfa
bravo
charlie
delta
echo
Output
List with padding and markers both turned off
- alfa
-
- bravo
- charlie
- delta
- echo
Turning off padding on a parent list does not remove if from children.
Note that the style also turns off markers Otherwise, they show up to the left of the bounding area.
end of line