views:

25

answers:

1

Hi folks, i am using the autoresize plugin which increases the height as users type in stuff. It works great on FF/Chrome, but the behavior is messed up on IE (see screenshots below).

Essentially, the textbox, when resized, does not push the rest of the buttons down, which is weird, given that nothing on the page is absolute positioned.

Before textresize After textresize

+1  A: 

I suspect the button and span on the right are in a relatively positioned container? I've encountered the same problem recently with positioned elements and expanding/collapsing siblings. Still searching for a proper solution, but removing the positioning can be a temp fix.

pleunv
thanks a lot! it works! the issue is that I put "position:relative" for all my divs - anyway to "unspecify" this for this particular div?
ming yeow