HTML Line Spacing & Compact Code

Posted by William Hand on Stack Overflow See other posts from Stack Overflow or by William Hand
Published on 2010-06-05T10:47:49Z Indexed on 2010/06/05 10:52 UTC
Read the original article Hit count: 185

Filed under:
|
|

I was just wondering if there was a professional opinion on the matter of compact code. Does it really speed up page loading. Example:

<body>
<div id="a"></div>
<div id="b"></div>
</body>

VS

<body>

<div id="a"></div>

<div id="b"></div>

</body>

any ideas?

© Stack Overflow or respective owner

Related posts about html

Related posts about css