list cursure
<!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <title> Title </title> <style> ul { /* list-style: auto; */ /* list-style-position: inside; */ list-style-image : url ( "Done.svg" ) ; offset : 14 px ; cursor : pointer ; background : antiquewhite ; } </style> </head> <body> <ul> <li> Item1 </li> <li> Item1 </li> <li> Item1 </li> <li> Item1 </li> <li> Item1 </li> <li> <ol> <li> Item1 </li> <li> Item1 </li> <li> Item1 </li> </ol> </li> </ul> </body> </html>