If you want cross-browser results, that means the same design in all browsers, you're going to have to use a little trick: using a background image for the list bullet. Here's the CSS for that:
ul li {
list-style: none;
background: url (images/bullet.jpg) 0px 2px no-repeat; /* the 2 pixels are usually enough to lower the bullet to align it with the text */
padding-left: 10px; /* the padding should be the with of the bullet image plus a few pixels to separate the text from it */
}
You might want to also specify a with for the li in case you want columns. Take into consideration the reset CSS mentioned by the above user.
Hope this helps.
ul li {
list-style: none;
background: url (images/bullet.jpg) 0px 2px no-repeat; /* the 2 pixels are usually enough to lower the bullet to align it with the text */
padding-left: 10px; /* the padding should be the with of the bullet image plus a few pixels to separate the text from it */
}
You might want to also specify a with for the li in case you want columns. Take into consideration the reset CSS mentioned by the above user.
Hope this helps.