[thelist] <br clear="all" />

Joshua Olson joshua at waetech.com
Mon Aug 26 09:19:00 CDT 2002


----- Original Message -----
From: "Brian W. Reaves" <brian at brianreaves.com>
Sent: Monday, August 26, 2002 9:49 AM


> I have seen
>
> <br clear="all" />
>
> in some of the lists as a solution, but I have not seen what it is for.
> Links to details would be appreciated

the clear="all" attribute means that the next element should appear below
all other elements, regardless of alignment.  Basically, if you have a left
or right aligned image or table (align="left/right"), you can use <br
clear="all" /> to force the next text to appear below the aligned
image/table, no matter how tall it is.  If you omit the clear="all", the
next text will still be to the side of the image/table.

e.g.

<img src="foo.jpg" width="100" height="200" alt="" border="1" align="left"
/>
<p>This text is to the right of the image</p>
<br clear="all" />
<p>This text is below the image</p>

HTH,

-joshua




More information about the thelist mailing list