I am trying to get this image to right align to the container with the text neatly on the left side, but I’m having trouble getting the text to wrap properly. Any help is greatly appreciated.
Here we could use float: right
on the img to get it to go far to the right and have the text effectively ignore it.
The only issue would be that it then has to be offset slightly from the edge with a margin
so that it’s not touching the border.
No float
float: right
float: right
and margin: 20px
Of course, you can then mess around with the size, shape etc. to get it looking as you want it.
1 Like
That’s what I was forgetting, float. Thank you!
1 Like