So I want a picture to become a bullet for my list. I want to use a background image to become a bullet. But it becomes the background of the item.
ul {
list-style-type: none;
}
li {
background-image: url('https://via.placeholder.com/50')
}
<ul>
<li>test</li>
<li>test</li>
<li>test</li>
</ul>
It must be done with a background-image and not with a list-style-image
What do I need to change?