While I code in Visual Studio, I have lot of
I know its a non-breaking space, but my question is whether its absence or presence can help to better web page performance?
Why is it and for what it is needed??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is a character entity for a non-break space.
It means that it the space will not be collapsed when viewed in a browser (as whitespace is normalized and ignored in HTML).
The only proper use of it is to ensure that certain words will not wrap (if you always want them to appear on the same line). For example
Open University– will not wrap.It doesn’t effect performance, apart from the added characters that get transmitted.
In earlier times, before CSS was widely used,
s were used in conjunction with tables for layout. These days, you should use CSS for layout.