On Wed Mar 28 09:13:37 2012, MARKOV wrote:
Show quoted text> A typical way of adding a blank line to HTML is by adding an explicit
> blank, like this:
>
> <div class="hinweis">
> <span class="hinweis_text">HINWEIS für Retouren<br />
> <br />
> line 3</span>
> </div>
>
> However, this gets formatted as two lines, where the blank is glued
> before "line 3".
The rendering logic of HTML is quite tricky in this regard, as you
can see by the following example:
<style>
.border {
border: 2pt solid green;
}
</style>
<div>
<span class="border"> a </span><span class="border">
b</span><br />
<span class="border"> a </span> <span class="border">
b</span><br />
</div>
In the first line, the whitespace in the "b" box is displayed in the
"b" box.
In the second line, the whitespace before the "b" box and the whitespace
inside the "b" box are combined and displayed before the "b" box.
Regards
Racke