This sample code will help you to add image icon in place of bullets of HTML List. just set the list-style-image property from CSS and assign the image URL and all is done you can check the list bullets showing image icon.
<html>
<head>
<style type="text/css">
ul {list-style-image: url('ArrowMap.gif'); verticle}
</style>
</head>
<body>
<ul>
<li>CsharpTalk.com</li>
<li>IndiHub.com</li>
<li>SoftwareTestingNet.com</li>
</ul>
</body>
</html>
0 comments:
Post a Comment