Latest Lists

What is the html code for a list with no bullets?

Don't want dictionary, want unordered list without bullets. http://www.geocities.com/jadeaaustin/index.html

Public Comments

  1. <li>
  2. Try this http://www.webmasterworld.com/forum21/10880.htm
  3. A definition list is not a list of items. This is a list of terms and explanation of the terms. A definition list starts with the <dl> tag. Each definition-list term starts with the <dt> tag. Each definition-list definition starts with the <dd> tag. <dl> <dt>Coffee</dt> <dd>Black hot drink</dd> <dt>Milk</dt> <dd>White cold drink</dd> </dl> Inside a definition-list definition (the <dd> tag) you can put paragraphs, line breaks, images, links, other lists, etc. The rest requires a bullet.
  4. Without looking at your page . . . The HTML for unordered lists is pretty much standard. You have to use CSS to suppress or change the bullets. There are MANY sites with examples of how to do it. I just don't have one in mind at the moment.
  5. put this in your html above the end head tag <style type="text/css"> <!-- li { list-style-type: none; } --> </style> </head>
Powered by Yahoo! Answers