+ 2
How do i center a line of text on the same line as an image
I have a line of text that is on the same line as an image (aligned right), and the image seems to bump the text towards the left.
1 Respuesta
+ 5
Try this:
<div style="text-align: right;">
<img src="..." />
<br>
<p style="text-align: right;"
>Text</p>
</div>