I have been struggling to try and place an image in the middle of a line of text.
"this is text THIS IS THE IMAGE this is text"
Any idea?
Thanks
I have been struggling to try and place an image in the middle of a line of text.
"this is text THIS IS THE IMAGE this is text"
Any idea?
Thanks
The old non-standard valign='ABSMIDDLE'
is massively deprecated.... Although it still works in every browser I know.
This should be a valid CSS workaround:
<img src="..." style="vertical-align:middle">
I guess what you want is this?
<div>
this is text <img src="..." style="display:inline"> this is text
</div>