When styling my li items with a list-style-image and single-line text, I noticed that the alignment didn't look quite right.
It seems that vertically aligning the text to the middle of the image would solve this issue.
I attempted to use vertical-align: middle, but unfortunately, it did not have the desired effect.
<html>
<head>
<title> Demo Example </title>
<style>
body {
background-color: #464443;
color: white;
}
ul {
list-style-image: url('bg.png');
}
li {
vertical-align: middle;
}
</style>
</head>
<body>
<ul>
<li>abc</li>
<li>abc</li>
<li>abc</li>
<li>abc</li>
</ul>
</body>
</html>