Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
10  
list-style-type: none; ?? – Haim Evgi Jun 22 '09 at 14:00
In IE, list-style: none works. list-style-type: none didn't work for me. No idea about other than IE. – Drt Sep 12 '12 at 10:25

9 Answers

up vote 334 down vote accepted

You can remove bullets with a CSS style like this

ul
{
    list-style-type: none;
}

You might also want to add padding:0; margin:0; to that, if you want to remove indentation as well.

See Listutorial for a great walkthrough of list formatting techniques.

share|improve this answer
10  
doesn't work on IE9, you need to ad list-style-type:none; to li – tovmeod Apr 3 '12 at 8:25
5  
So IE is still making it difficult for us, even with new versions. Who would have known. – Henrik Petterson Aug 3 '12 at 18:15
Indeed, the guys at MS dont really understand the word "Cascading" in CSS. :) - A lot of frameworks use UL and LI for e.g. tabbed panels or button toolbars. Its odd that IE is always the odd one out on these things that should have been essential web development knowledge. – Johncl Dec 20 '12 at 12:55

You need to use style="list-style: none;":

<ul style="list-style: none;"><li> ...
share|improve this answer

in css , style ,

 list-style-type: none;
share|improve this answer

You would have to add a style to the <ul> element like the following:

<ul style="list-style: none; ">
    <li>Item</li>
    ...
    <li>Item</li>
</ul>

That will remove the bullets. You could also add the CSS in a stylesheet like the examples above.

share|improve this answer

Use CSS:

ul
{
  list-style-type: none
}
share|improve this answer

in css...

ul {
   list-style:none;
}
share|improve this answer

Small refinement to the above: To make longer lines more readable if they spill over to additional screen lines:

ul, li {list-style-type: none;}

li {padding-left: 2em; text-indent: -2em;}
share|improve this answer

You can also use the list-style shorthand (remove the word 'type')

ul {
  list-style: none;
}

http://www.w3schools.com/css/css_list.asp

share|improve this answer

In case you want to keep things simple without resorting to css, I just put a   in my code lines. I.e. <table></table> Yeah it leaves a few spaces but thats no bad thing.

share|improve this answer
3  
-1 Simple? Without CSS? This is why many websites are in the shocking state they are. CSS adds simplicity. Tables are not the way forward. – webnoob Mar 15 at 10:59
Please use the "edit" link to update your answer. – ChrisF Mar 15 at 11:03
If every browser has a slightly different implementation of something as basic as this (All of these suggestions don't work in Chrome for me) and tables provide a clean, convenient means of getting it done which works in all browsers, then by all means, use what works. +1 for a solution that actually works. – M Lamb Mar 22 at 6:10
Hear, hear. He's only getting downvoted because of the <table>-bashers. +1. – Scott Stafford May 1 at 18:05

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.