I'm currently trying to use a star image as a custom bullet point on an <li>
element. However, I'm facing the issue where the bottom of the image aligns with the font's baseline, causing the image to be pushed upwards. Is there any solution to resolve this problem, or should I resort to using a css background image as an alternative?
ul.features-list {
list-style-image: url('../assets/star-bullet.svg');
margin-left: 10px;
}
.features-item {
font-size: 36px;
}
Any thoughts or suggestions on how to tackle this issue?