

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Usage of CSS list-style-type property
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
Example
<html> <head> </head> <body> <ul style = "list-style-type:circle;"> <li>India</li> <li>Australia</li> </ul> </body> </html>
- Related Questions & Answers
- Usage of CSS list-style property
- Usage of CSS list-style-position property
- Usage of CSS list-style-image property
- Usage of font-style property in CSS
- Usage of border-style property in CSS
- Usage of transform-style property with CSS
- Usage of border-bottom-style property in CSS
- Usage of border-top-style property in CSS
- Usage of border-left-style property in CSS
- Usage of border-right-style property in CSS
- Setting List Style Type using CSS
- Setting List Style Type in CSS
- Usage of CSS visibility property
- Usage of CSS perspective property
- Usage of CSS grid property
Advertisements