HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> ul{ font-size:18px; line-height: 1.8; list-style-image: url("/add.svg"); } </style> </head> <body> <h1>CSS list-style-image Property</h1> <ul id="point"> <li>Apple</li> <li>Banana</li> <li>Cherry</li> </ul> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("ul")[0]; function myFunction(){ x.style.listStyleImage = "url("/volume.svg")"; } </script> <p><strong>Note</strong>: Click on the button to change the 'list-style-image' from one image to another.</p> </body> </html>
OUTPUT
×

Save as Private