Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To eliminate the dote from the menu items in HTML, you can use CSS to remove the list-style-type property from the unordered list. The following CSS code will remove the dot from the list items:

ul {
  list-style-type: none;
}

This will remove the dot from all unordered lists on your webpage. If you only want to remove the dot from a specific list, you can give that list a unique class or ID and target it in your CSS:

HTML:

<ul class="menu">
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3<li>
</ul>

CSS:

ul.menu {
  list-style-type: none;
}

This will only remove the dot from the list with the class "menu".