Latest Lists

How do I set special character for html list item?

Hello, I want to create a ul, and I want the bullets style to be special character, like '>'. Is there any way defining bullet style to be special character or I have to use image?

Public Comments

  1. Using an image would give you more control.
  2. Use the special character names or entity to add these to your list. You will have to turn off the default list style: li { list-style-type: none } Then for each: <ul> <li>& lt; Inserted spaces for entity to show here & gt;</li> </ul> For a list of different entities: http://www.mozilla.org/newlayout/testcases/layout/entities.html http://htmlhelp.com/reference/html40/entities/latin1.html http://htmlhelp.com/reference/html40/entities/ http://www.alanwood.net/demos/ent4_frame.html Ron
Powered by Yahoo! Answers