About Lesson
list-style-image
इस Property के द्वारा आप List Marker के लिए किसी Image को Use कर सकते हैं
Syntax:- list-style-image:url(‘url-of-image’);
list-style-image
Through this property you can use any image for list marker.
Syntax:- list-style-image:url(‘url-of-image’);
Example
<html> <head> <title>list-style-image demo</title> <style> ul { list-style-image:url(‘list-bullet.png’); } </style> </head> <body> <h1>Example of CSS list Image marker</h1> <ul> <li>ONE</li> <li>TWO</li> </ul> </body> </html> |