View Single Post
Brad
Selfish Heathen
 
Join Date: May 2004
Location: Zone of Pain
 
2006-08-26, 14:09

To clarify, the problem is any whitespace between two specific inline (img has display:inline by default) elements that you want to touch.

So, this is okay:

[html]<p>
<img /><img /><img />
<br />
<img /><img /><img />
<br />
<img /><img /><img />
<br />
</p>[/html]

...because there's no whitespace between the adjacent images.

These are not okay:

[html]<p>
<img />
<img />
<img />
<br />
<img />
<img />
<img />
<br />
<img />
<img />
<img />
<br />
</p>[/html]


[html]<p>
<img /> <img /> <img /><br />
<img /> <img /> <img /><br />
<img /> <img /> <img /><br />
</p>[/html]

...because any space, tab, or new line will be collapsed into a single space character and inserted between the output.

The quality of this board depends on the quality of the posts. The only way to guarantee thoughtful, informative discussion is to write thoughtful, informative posts. AppleNova is not a real-time chat forum. You have time to compose messages and edit them before and after posting.
  quote