Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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>
Advertisements
