❮ Prev Page Next Page ❯
Top

CSS Lists

Unordered Lists:

  • Coffee
  • Tea
  • Coca Cola
  • Coffee
  • Tea
  • Coca Cola

Ordered Lists:

  1. Coffee
  2. Tea
  3. Coca Cola
  1. Coffee
  2. Tea
  3. Coca Cola

➢unordered lists (<ul>) - the list items are marked with bullets
➢ordered lists (<ol>) - the list items are marked with numbers or letters

EXAMPLE:

ul.a { list-style-type: circle;}
ul.b { list-style-type: square;}
ul.c { list-style-type: upper-roman;}
ul.d { list-style-type: lower-alpha;}

Run


➢The list-style-image property specifies an image as the list item marker

EXAMPLE:

ul { list-style-image: url('sqpurple.gif');}

Run


➢The list-style-position property specifies the position of the list-item markers (bullet points).
"list-style-position: outside;" means that the bullet points will be outside the list item. The start of each line of a list item will be aligned vertically. This is default.
"list-style-position: inside;" means that the bullet points will be inside the list item. As it is part of the list item, it will be part of the text and push the text at the start.

EXAMPLE:

ul.a { list-style-position: outside;}
ul.b { list-style-position: inside;}

Run


➢The list-style-type:none property can also be used to remove the markers/bullets. Note that the list also has default margin and padding. To remove this, add margin:0 and padding:0 to <ul> or <ol>:

EXAMPLE:

ul {list-style-type: none; margin: 0; padding: 0; }

Run


➢The list-style property is a shorthand property. It is used to set all the list properties in one declaration.

EXAMPLE:

ul {list-style: square inside url("sqpurple.gif");}

Run


❮ Prev Page Next Page ❯