Along the course of my coding, I come across two ways of achieving the same
result.
For example:
<div id=content">
<p class="text">
Example text 1
</p>
<p class="text">
Example text 2
</p>
</div>
-----------------------------
<div id=content">
<p class="text">
Example text 1
<br />
<br />
Example text 2
</p>
</div>
---------------------------
So is it a question of preference? On the one hand, the first example seems
more 'formed', but on a sizeable document it may create a larger file
(perhaps negligible).
I've a mix of both in my coding, and have decided to with one or the other,
and at least maintain continuity. Which?
Many thanks.
Dave Cameron
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************