I have created a unordered list, that is very useful for me to append and remove list item using jQuery.. I feel the bullets in the unordered list is disturbing much, so I want to remove it. How its possible to have a list with out bullet.
|
You can remove bullets with a CSS style like this
You might also want to add See Listutorial for a great walkthrough of list formatting techniques. |
|||||||||||
|
|
You need to use style="list-style: none;":
|
|||
|
|
|
You would have to add a style to the
That will remove the bullets. You could also add the CSS in a stylesheet like the examples above. |
|||
|
|
|
Small refinement to the above: To make longer lines more readable if they spill over to additional screen lines:
|
||||
|
|
|
You can also use the list-style shorthand (remove the word 'type')
|
||||
|
|
|
In case you want to keep things simple without resorting to css, I just put a in my code lines.
I.e. |
|||||||||||
|
protected by Community♦ Mar 15 at 11:03
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.



list-style: noneworks.list-style-type: nonedidn't work for me. No idea about other than IE. – Drt Sep 12 '12 at 10:25