Both of them mean space, but is there any difference?
|
|
One is non-breaking space and the other is a regular space. A non-breaking space means that the line should not be wrapped at that point. Furthermore as Svend points out in his comment, non-breaking spaces are not collapsed. |
||||||||||||||||
|
|
|
There are a lot of different types of spaces, such as thin space, em space, non breaking space... Jon Tan has made a writeup of the most common ones at his blog. |
||
|
|
|
|
HTML will only parse one space '' and it drops the rest... If you want five spaces, you would place 5 x |
||
|
|
|
|
Not an answer as much as an example:
|
||||||
|
|
|
When having line-breaks, the line will not break when you use an $bnsp; because it's a 'non-breaking space'. This can be important if you have certain product-names or such, that always shall be written together. Can be interesting if you (have to) use a whitespace as delimiter in numbers, like 12344567, that is displayed 12 344 567 in France. Without the the line would break in the middle of the number, very ugly. Test:12 344 567 |
||
|
|
|
|
The entity For example when you display numbers with space as thousands separator: 1 234 567, then you use non-breaking spaces so that the number can't be split on separate lines. If you display currency and there is a space between the amount and the currency: 42 SEK, then you use a non-breaking space so that you don't get the amount on one line and the currency on the next. |
||
|
|
|
As already mentioned, you will not receive a line break where there is a "no-break space". Also be wary, that elements containing only a " " may show up incorrectly, where will work. In i.e. 6 at least (as far as I remember, IE7 has the same issue), if you have an empty table element, it will not apply styling, for example borders, to the element, if there is no content, or only white space. So the following will not be rendered with borders:
Whereas the borders will show up in this example:
Hmm -had to put in a dummy space to get it to render correctly here |
||||||||
|
|
|
Multiple normal white space characters (space, tabulator and line break) are treated as one single white space character:
So
is displayed as
But no-break space is always displayed. So
is displayed as
|
||
|
|
|
|
In addition to the other answers here, non-breaking spaces will not be "collapsed" like regular spaces will. For example, both
and
will render the same on any browser, while
will keep the spaces when rendered. (Please ignore the spaces in the previous line; Markdown was formatting the & nbsp;'s and not displaying them as written. |
||||||||
|
|
|
' ' can be handled as a non interesting whitespace ' ' + ' ' can be handled as a single ' ' |
||
|
|
|
|
@Zoidberg is right, example:
will not display space between header markup, with
will do space :) |
||
|
|
|
|
The first is not treated as white space by the HTML parser, the second is. As a result the " " is not guaranteed to showup within certain HTML markup, while the non breakable space will always show up. |
||
|
|

