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: 201
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