Faqts : Business : Internet : Web : CSS

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

15 of 18 people (83%) answered Yes
Recently 7 of 10 people (70%) answered Yes

Entry

How Do I Change The Bullet Style Of My List ?

Apr 3rd, 2001 07:29
Ben Gordon,


CSS offers several options for changing the style of a list you can use 
the "list-style-type:" property with any of the following values
disc | circle | square
decimal
lower-roman | upper-roman
lower-alpha | upper-alpha  and they should work in IE/NS/ Opera
additionally IE offers the use of the "list-style-image" which allows 
the use of custom bullets, syntax should be 
style="list-style-image: url(http://www.your.com/bullet.gif)"  or in a 
style sheet as
ul { list-style-image: url(http://www.your.com/bullet.gif) }