Alan Simpson

menu

Style Lists

Use the controls below to style unordered and ordered lists. When you see a format you like, copy / paste the CSS code into your style sheet.

List Left Margin:
List Alignment:      
List Marker Positions:   
List Item Left Padding:
List Item Bottom Padding:
Unordered List Style:
Ordered List Style:

Use the CSS code below for styling

ol,ul{
  margin: initial;
  text-align: initial;
  list-style-position: initial;
}

ul{
   list-style-type: disc;
}
ol{
   list-style-type: decimal;
}

ol li, ul li{
   padding-left: initial;
   padding-bottom: initial;
}