When it comes to having list items with images on the left and text on the right, the issue arises when each image is of a different width. This can cause the text to not align vertically next to their respective images.
Is there a way to ensure that the labels align vertically, appearing to the right of their respective images? Thank you
.checks-row {
display: inline-block;
}
.checks-row li {
display: inline;
}
.check-image {
width: 4em;
}
<ul class="checks-row">
<li class="check-image">
<img src="/{{this.image}}.gif">
</li>
<li class="check-label">{{this.label}}</li>
</ul>