Important Notice:

Course Content
Float Property
0/1
Z-Index
0/1
CSS object-fit Property
0/1
CSS Visibility Property
0/1
CSS (Chapter 4) M2-R5.1
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>

 

error: Content is protected !!