---
title: "I need an unordered list without any bullets."  
description: "I need an unordered list without any bullets."  
author: "Revati S Misra"  
published: 2023-04-24  
updated: 2023-04-25  
canonical: https://www.mindstick.com/forum/157990/i-need-an-unordered-list-without-any-bullets  
category: "html"  
tags: ["html", "html lists", "css"]  
reading_time: 1 minute  

---

# I need an unordered list without any bullets.

I need an unordered list without any bullets.

## Replies

### Reply by Aryan Kumar

To create an unordered list without any bullets in HTML and CSS, you can use the following code:

HTML:

```html
<ul class="no-bullets">
 <li>Item 1</li>
 <li>Item 2</li>
 <li>Item 3</li>
</ul>
```

CSS:

```css
.no-bullets {
 list-style: none;
 padding: 0;
 margin: 0;
}
```

In this example, we're setting the **list-style** property of the **ul** element to **none** to remove the default bullet points. We're also setting the **padding** and **margin** properties to 0 to remove any spacing around the list.

You can adjust the CSS properties as needed to style the list to your desired design.


---

Original Source: https://www.mindstick.com/forum/157990/i-need-an-unordered-list-without-any-bullets

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
