Re: [css-d] Problems with DIV elements and position

2005-11-13 Thread Thierry Koblentz
Reynier Perez Mira wrote: > can send atachments to the list, but I send you a screenshoot in > which I show you what´s happend. I must do something wrong but not > know what. Go with Olly's suggestion. Thierry | www.TJKDesign.com __

Re: [css-d] Problems with DIV elements and position

2005-11-13 Thread Reynier Perez Mira
] Enviado el: domingo, 13 de noviembre de 2005 6:42 pm Para: Reynier Perez Mira; css-d list Asunto: Re: [css-d] Problems with DIV elements and position > * > .float.left { > float: left; > clear: both; > }

Re: [css-d] Problems with DIV elements and position

2005-11-13 Thread [EMAIL PROTECTED]
> * > .float.left { > float: left; > clear: both; > } > .float.right { > float: right; > } you need .float.left {float: left;} .float.right: {float: right; clear: both;} This will put your float.left conte

Re: [css-d] Problems with DIV elements and position

2005-11-13 Thread Olly Hodgson
On 13/11/05, Reynier Perez Mira <[EMAIL PROTECTED]> wrote: > > divRight divLeft >divBelow #divRight, #divLeft { width: 50%; float: left; } #divBelow { clear: left; } You might need to fiddle with the width to get IE to play nicely. -- Olly http://thinkdrastic.net/ ___

Re: [css-d] Problems with DIV elements and position

2005-11-13 Thread Reynier Perez Mira
Well it's not that I want. I need to do something like this: * Element1 Element2 Element below others * I do this with DIV: ***

Re: [css-d] Problems with DIV elements and position

2005-11-13 Thread [EMAIL PROTECTED]
> } > .float.right { > float: right; Add clear: both; here > } -- Joel Goldstick www.columbuswebmakers.com __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-disc

[css-d] Problems with DIV elements and position

2005-11-13 Thread Reynier Perez Mira
Well I have three DIV elements and I need to positioned in this way. One aligned to left (obtain) another aligned to right (obtain) and the other below of this two. See the code below: ** DIV aligned to Left DIV aligned to Right DIV b