My ul
list items have an image added using the list-style-image
property.
Here is an example of what I have done: JSFiddle
ul {
list-style-image: url('http://placehold.it/50x40');
}
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
I want to ensure that the text (e.g. "Coffee") within the li
items touches the pictures, leaving no gap between the list item image and its description.