Reputation: 2155
For the longest time, I have wanted to understand why the browser adds an empty space between rendered HTML elements when there is a NewLine between them, for example:
<span>Hello</span><span>World</span>
The html above will output the “HelloWorld” string without a space between “Hello” and “World”, however in the following example:
<span>Hello</span>
<span>World</span>
The html above will output a “Hello World” string with a space between “Hello” and “World”.
Now, I have no problem accepting that this is just the way it works period, but the thing that bugs me a little is that I was always under the impression that spaces (or newlines) between the html elements would not matter at the time when the browser rendered the html to the user.
So my question is if anyone knows what the philosophical or technical reason behind this behavior.
Thank you.
Upvotes: 93
Views: 43036
Reputation: 2068
For anyone looking to prevent this behavior, you can set the font-size
of the parent element to 0
and then reset it for the child elements:
div {
font-size: 0;
}
div span {
font-size: 1rem;
}
<div>
<span>Hello</span>
<span>World</span>
</div>
Upvotes: 0
Reputation: 357
you can use the html comment tag to connect the code to avoid the space.
<p>
This is my
<span class="red_text">Hello</span><!--
--><span class="blue_text">World</span>
example
</p>
Upvotes: 25
Reputation: 131550
Browsers condense multiple whitespace characters (including newlines) to a single space when rendering. The only exception is within <pre>
elements or those that have the CSS property white-space
set to pre
or pre-wrap
set. (Or in XHTML, the xml:space="preserve"
attribute.)
Upvotes: 85
Reputation: 9
Browsers make a mistake here:
http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.1
SGML (see [ISO8879], section 7.6.1) specifies that a line break immediately following a start tag must be ignored, as must a line break immediately before an end tag. This applies to all HTML elements without exception.
Upvotes: -2
Reputation: 75981
Whitespace between block elements are ignored. However, whitespaces between inline elements are transformed into one space. The reasoning is that inline elements might be interspersed with regular inner text of the parent element.
Consider the following example:
<p>This is my colored <span class="red_text">Hello</span> <span class="blue_text">World</span> example</p>
In the ideal case, you want the user to see
This is my colored Hello World example
Removing the whitespace between the two spans however would result in:
This is my colored HelloWorld example
But that same sample can be rewritten by an author (with OCD about the HTML formatting :-)) as:
<p>
This is my colored
<span class="red_text">Hello</span>
<span class="blue_text">World</span>
example
</p>
It would be better if this was rendered consistently with the previous example.
Upvotes: 63
Reputation: 7039
HTML is specified to do it like that:
Line breaks are also white space characters
http://www.w3.org/TR/REC-html40/struct/text.html#h-9.1
Upvotes: 21
Reputation: 19666
If you had the character 'a' between two tags, you would expect it to get rendered. In this case, you have a character '\n' between two tags; the behaviour is analogous, and consistent ('\n' is rendered as a single whitespace).
Upvotes: 4