- 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 control the shape or appearance of the marker with CSS?
The list-style-type allows you to control the shape or appearance of the marker. You can try to run the following code to implement list-style-type property to work for the unordered list:
Example
<html> <head> </head> <body> <ul style = "list-style-type:circle;"> <li>Apple</li> <li>Mango</li> <li>Grapes</li> </ul> </body> </html>
- Related Articles
- Set the distance between the marker and the text relating to that marker with CSS
- How to indicate whether the marker should appear inside or outside of the box containing the bullet points with CSS?
- Set marker inside of the box containing the bullet points with CSS
- Set marker outside of the box containing the bullet points with CSS
- Custom Checkbox with CSS appearance Property
- Control the placement of the table caption with CSS
- Custom Radio Buttons with CSS appearance Property
- Is it possible to control Matplotlib marker orientation?
- Control the flow and formatting of text with CSS
- How to set the position of the list-item marker with JavaScript?
- Usage of CSS marker-offset property
- Hide Dropdown Arrow for Select Input with CSS appearance
- Change Bullet Color for Lists with ::marker CSS Selector
- How to set the list-item marker type with JavaScript?
- How to change the marker size with pandas.plot() in Matplotlib?

Advertisements