I have the following code
<img src=""><a href="">abc def</a>
How can I prevent a linebreak between the <img>-tag and the <a>-tag?
Not even a between the tags works.
It's not an enforced linebreak (like after block elements) but the line break occurs when the browser window is too small.
I don't want to prevent any linebreaks between "abc" and "def", just between <img> and <a>.
I don't want to use <nobr> because it's nonstandard and would be dirty:
<nobr><img src=""><a href="">a</nobr>bc def</a>
Any ideas are highly appreciated!