How can I right-align an image using CSS.
I do not want the text to wrap-around the image. I want the right aligned image to be on a li
wrap-around
My workaround for this issue was to set display: inline to the image element. With this, your image and text will be aligned to the right if you set text-align: right from a parent container.
display: inline
text-align: right