'list-style-image' Example : list style image « CSS « HTML / CSS

HTML / CSS » CSS » list style image 
'list-style-image' Example
  
    
<html>
<body>
<ul style="list-style-image:url(http://www.java2s.com/style/logo.png)">
   <li>Item 1.</li>
   <li>Item 2.</li>
   <li>Item 3.</li>
   <li>Item 4.</li>
   <li>Item 5.</li>
</ul>
</body>
</html>

    
      
        
    
  
Related examples in the same category
1.list-style-image: url("m.gif")
2.list-style-image: url('arrow.png');
3.Simple list-style-type and list-style-image example
4.UL list-style-image: url(bullet.gif);
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.