How to remove bullet points in CSS?26 Mar 2025 | 2 min read In some cases, we are required to remove the bullets of unordered and ordered lists. The removal of the list bullets is not a complex task using CSS. It can be easily done by setting the CSS list-style or list-style-type property to none. The list-style-type CSS property is used to set the marker (like a disc, character, or the custom counter style) of a list item element. This CSS property helps us to create the list without bullets. It can only be applied to those elements whose display value is set to list-item. The list-style-type property is inherited, so it can be applied to the parent element (like <ul> or <ol>) to make it apply to all list items. By default, the ordered list items are numbered with Arabic numerals (1, 2, 3, etc.), and the items in an unordered list are marked with round bullets (•). The list-style-type CSS property allows us to change the default list type of marker to any other type such as square, circle, roman numerals, Latin letters, and many more. If we set its value to none, it will remove the markers/bullets. Instead of removing the bullets in a list, we can replace them with the images. It makes the site visually more attractive. It can be done by using the list-style-image property. Let's understand how to remove bullet points by using an example. ExampleIn this example, we are using both ordered and unordered lists and applying the list-style-type property with the value none to remove the bullet points of the list items. Output ![]() Next TopicDifference between HTML and CSS |
In this article, we will create a CSS shake effect on text and image. In the beginning, we will learn the basic meaning of CSS. After that, we will learn this concept with the help of various examples. What do you mean by CSS? The term CSS stands...
7 min read
HTML elements are chosen or chosen using CSS selectors so that CSS styles may be applied to them. The class names of HTML elements are supplied as attributes within an HTML tag, and a class selector in CSS is used to choose HTML components based on...
6 min read
Introduction We can build a website for a company or person that is beautiful, and that is useful for online use. But it is very hard and expensive, and it also takes time to develop a website from scratch. With the help of CSS templates, we can...
3 min read
How to add a border in CSS? The border is a shorthand property in CSS, which is used to add a border on an element. It allows us to specify the border of the box. It sets the width, style, and color of the border. This...
3 min read
In this article, we will understand the marquee effect with the help of CSS. What do you mean by Marquee? Marquee is used to create horizontal or vertical scrolling effect, animation effect in text and images for web pages. For Example: News headlines moves in TV. The <marquee>...
10 min read
defines what type of font you want to display. It may be italic, oblique, or normal. This CSS property is used to define the style of font for the text content of an element. Syntax font-style: normal | italic | oblique | initial | inherit; Property Values The property...
2 min read
is a property defined in CSS (Cascading Style Sheets) that enable the user to control the text wrapping and white spaces inside an element of the website. It can take several types of values depending upon the user's need. Syntax of Property The syntax of implementing...
5 min read
? CSS is mainly used for providing the best style to the HTML web page. Using CSS, We can specify the arrangement of elements on the page. There are various methods of aligning the button at the center of the web page. We can align the buttons...
2 min read
? Links are used to connect one page to other web pages. Links with the same color as the rest of the text are difficult to notice. The color property of the CSS is used for changing the color of the links. Using CSS, we can style...
3 min read
? CSS word-wrap property is used to break the long words and wrap onto the line. This property is used to ent overflow when an unbreakable string is too long to fit in the containing box. This property defines the breaks in the word to avoid...
2 min read
We request you to subscribe our newsletter for upcoming updates.
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India