RE: Making the 'float' property more versatile

> Sketch of the current situation (all elements style="float: left;"):
> 
> |---| |---| |---|
> |   | | 2 | | 3 |
> | 1 | |---| |---|
> |   |
> |---| |---| |---|
>       | 4 | | 5 |
>       |---| |---|
> 
> 
> Sketch of the desired situation(all elements style="float: 
> absolute-left;"):
> 
> |---| |---| |---|
> |   | | 2 | | 3 |
> | 1 | |---| |---|
> |   |
> |---|
> 
> |---| |---|
> | 4 | | 5 |
> |---| |---|
> 

You can already do this with

#div4,#div5	{
	float: left;
	clear: left;
}

The clear property has been available since CSS1.

http://www.w3.org/TR/REC-CSS1#clear
-------------------------------------------------------------------------------------

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated recipient(s)

of the message. If the reader of this message is not the intended recipient,

you are hereby notified that any dissemination, use, distribution or copying of 

this communication is strictly prohibited and may be unlawful. 

If you have received this communication in error, please notify us immediately

by replying to the message and deleting it from your computer.

Thank you.

-------------------------------------------------------------------------------------

Received on Tuesday, 15 July 2003 19:46:38 UTC