Rendering depends on HTML source formatting
Mikhail Arkhipov talks about VS switching between design and code view issue, when VS actually reformats your code. Now it is obvious why that happens. What I can not agree that rendering does not depend on the way HTML source is formatted. Here is quick example. The only difference between examples is carriage return in the 1st source. In the second example tr is written in one row.
a.html:
< table cellpadding="0" cellspacing="0" border="0"> < tr>< td bgcolor="blue"> < img width="40" height="40" src="im.gif"> < /td>< /tr> < /table>
b.html
< table cellpadding="0" cellspacing="0" border="0"> < tr>< td bgcolor="blue">< img width="40" height="40" src="im.gif">< /td>< /tr> < /table>
Monday, May 17, 2004 6:18 AM