I use list-style for li elements and single-line text.

But it looks bad, so I want to vertically align the text to the middle of the image.
Should I use vertical alignment: middle, right? But that did not work for me.
<html>
<head>
<title> This is an demo </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>
source
share