PDA

View Full Version : What is the advantage of collapsing white space?



Theomax
07-01-2017, 03:52 AM
The browser collapses the multiple white spaces into a single white space in HTML.
- This allows the developers to arrange the HTML code in a well organized and legible format.

dennis123
07-03-2017, 02:22 AM
White spaces are blank sequence of space characters, which is actually treated as a single space character in html. Because the browser collapses multiple space into a single space, you can indent lines of text without worrying about multiple spaces. This enables you to organize the html code into a much more readable format.

dramaqueen
07-03-2017, 03:07 AM
White spaces are blank sequence of space characters, which is actually treated as a single space character in html. Because the browser collapses multiple space into a single space, you can indent lines of text without worrying about multiple spaces.

charlottegracie
07-03-2017, 08:13 AM
White spaces are a blank sequence of space characters, which is actually treated as a single space character in HTML. Because the browser collapses multiple spaces into a single space, you can indent lines of text without worrying about multiple spaces. This enables you to organize the HTML code into a much more readable format.