Latest Lists

How do I created an unbulleted HTML list?

I don't want to create an ordered list. I want to create a normal list minus the bullets. I have searched and searched online for the answer to this but have yet to find one. A lot of websites use them and they look nice. Just can't find one to use as an example. They're not numbered, bulleted, or definition lists. Nor are they nested. They're just simply unbulleted lists. Any help you can provide would be greatly appreciated.

Public Comments

  1. You can do this by adjusting the list-style-type CSS property on an unordered list. For example: <ul style="list-style-type: none;"> <li>foo</li> <li>bar</li> <li>baz</li> </ul> This is just an example; obviously, in a production environment all your CSS code should be in an external stylesheet.
  2. you could do that or you could just use the <br /> tag to drop down to the next line if you dont want to use CSS
  3. Does it really even have to be a "list" as far as the html tags are concerned? Any reason not to just put in the text and add a break tag <br> after each item? Or, do you need indentation on the list? Maybe you can point us to an example of what you want to achieve.
  4. in your CSS: ul { list-style-type: none; list-style-image: none; } Then make the unordered list and you usually would. You can apply format for the list item in teh css as well li { styles here }
Powered by Yahoo! Answers