- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create an unordered list without bullets using CSS?
To create an unordered list without bullets using CSS, the code is as follows −
Example
<!DOCTYPE html> <html> <head> <style> body{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } ul { list-style-type: none; margin: 0; padding: 0; font-size: 18px; font-weight: bold; } </style> </head> <body> <h1>Remove bullets from ul example</h1> <ul> <li>Tiger</li> <li>Giraffe</li> <li>Lion</li> </ul> </body> </html>
Output
The following output will be produced by the above code −
- Related Articles
- How to create an unordered list without bullets in HTML?
- Create a bordered list without bullets using CSS
- How to create an unordered list with disc bullets in HTML?
- How to create an unordered list with circle bullets in HTML?
- How to create an unordered list with square bullets in HTML?
- How to create an unordered list with image bullets in HTML?
- How to Animate Bullets in Lists using CSS
- How to add an unordered list in HTML?
- How to create space between list bullets and text in HTML?
- JavaScript - How to create nested unordered list based on nesting of array?
- How to create a list of an unordered combination of elements in a string vector in R?
- Formatting Unordered and Ordered Lists Using CSS
- How to Create an Image Slider using HTML, CSS, and JavaScript?
- How to Create an Analog Clock using HTML, CSS, and JavaScript?
- How to create a website without using HTML?

Advertisements