CSS/HTML Set an Image as the list-item marker Code For Website - Learn About Website | DaddyFile

0

An Image as The List Item Marker Explain

The list-style-image property specifies an image as the list item marker.


Html Code:

<!DOCTYPE html>
<html>
<head>
<style>
ul {
    list-style-image: url('sqpurple.gif');
}
</style>
</head>
<body>

<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Coca Cola</li>
</ul>

</body>
</html>






Html Code Result:

Note: Add Your Own Picture In This Code.




Post a Comment

 
Top