Re: [css-d] div not floating in FF

2010-03-22 Thread Nancy
Dennis wrote: > if you want to have the two floating divs side-by-side, > I do believe you need to give them a width value And apparently he is correct. Thank you. Nancy __ css-discuss [cs...@lists.css-discuss.org] http://www.cs

Re: [css-d] div not floating in FF

2010-03-22 Thread Thierry Koblentz
> > Other than that, if you want to have the two floating divs side-by- > side, I do believe you need to give them a width value - otherwise they > will assume 100% width. Floats do not assume 100% width, if there is no width specified they "shrink wrap". -- Regards, Thierry www.tjkdesign.com |

Re: [css-d] div not floating in FF

2010-03-22 Thread Claude Needham
> -Original Message- > Other than that, if you want to have the two floating divs side-by-side, I do > believe you need to give them a width value - otherwise they will assume 100% > width. > Dennis The width value of the two inner div is indeed the direction to look. If you replace the

Re: [css-d] div not floating in FF

2010-03-22 Thread Dennis Bixler
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of nancy Sent: Monday, March 22, 2010 1:11 PM To: 'Climis, Tim'; css-d@lists.css-discuss.org Subject: Re: [css-d] div not floating in FF Was using the tag attri

Re: [css-d] div not floating in FF

2010-03-22 Thread Thierry Koblentz
> Was using the tag attribute clear, not the style attribute. > But I tried changing it to the style clear:both to no avail. > Thanks anyway. You should clear the floats while still inside the parent container, your is *after* that container. Anyway, rather than using a , try overflow:hidden on t

Re: [css-d] div not floating in FF

2010-03-22 Thread nancy
css-discuss.org' Subject: RE: [css-d] div not floating in FF > I have a break with a clear equals all below the outer div. Clear: all is not a valid value. Are you looking for clear: both? ---Tim __ css-discuss [cs...@list

Re: [css-d] div not floating in FF

2010-03-22 Thread Climis, Tim
> I have a break with a clear equals all below the outer div. Clear: all is not a valid value. Are you looking for clear: both? ---Tim __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-

[css-d] div not floating in FF

2010-03-22 Thread nancy
I have a div containing 2 other divs, one is floated left, the other is floated right. I have a break with a clear equals all below the outer div. In Firefox and most browsers, the content of the right floated div is appearing below the outer div. In DreamWeaver and IE8 it is displaying "correctly