Contact Us

|

FriendFeed FriendFeed

|

follow us on twitter Twitter

|

 Rss Feed

|

Favorites Add to Favorites

Monday, June 11, 2007

CSS List Style Type

CSS allows you to select from a wide variety of different list item shapes.

* Unordered list styles: square, circle, disc(default), and none
* Ordered list styles: upper-alpha, lower-alpha, upper-roman, lower-roman, decimal(default), and none

Example:
ol { list-style-type: upper-roman; }
ul { list-style-type: circle; }
Read more...