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-image property
The list-style-image specifies an image for the marker rather than a bullet point or number. You can try to run the following code to implement list-style-image property:
Example
<html> <head> </head> <body> <ul> <li style = "list-style-image: url(/images/bullet.gif);">Karnataka</li> <li>Hyderabad</li> </ul> </body> </html>
Advertisements
