In my ASP.NET application, I was trying to add few white spaces between two text boxes by typing space bar. The equivalent HTML source was
instead of
. So I just wanted to check: is this the new replacement for white space? If yes, any idea why they changed?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
is the character entity reference (meant to be easily parseable by humans).
They are the same except for the fact that the latter does not need another lookup table to find its actual value. The lookup table is called a DTD, by the way.
You can read more about character entity references in the offical W3C documents.
Method 2
Those do both mean non-breaking space, yes.
is another synonym, in hex.
Method 3
is the numeric reference for the entity reference
— they are the exact same thing. It’s likely your editor is simply inserting the numberic reference instead of the named one.
See the Wikipedia page for the non-breaking space.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0