[jQuery] Re: append() does not properly resize div when adding content

2009-06-12 Thread amuhlou
you're declaring a fixed height inline. the div is being told to only be 100px tall, so it doesn't matter how much content is inside it. try replacing height: 100px with float: left; On Jun 12, 11:38 am, Eric-Sebastien Lachance eslacha...@gmail.com wrote: Hello, I'm creating a page that

[jQuery] Re: append() does not properly resize div when adding content

2009-06-12 Thread Eric-Sebastien Lachance
Awesome, that works! I hadn't set a static height at first, hadn't put any style in fact, so I was in a bind, but this works great for me. Thanks a lot! Eric. On Jun 12, 1:24 pm, amuhlou amysch...@gmail.com wrote: you're declaring a fixed height inline.  the div is being told to only be