tags:

views:

27

answers:

1

I'm developing a new jQuery form framework and have run into a weird styling issue:

http://www.jformer.com/demos/page-navigator/

When sliding to the next page the div floated to the left of it starts wigging out during the slide. Does anyone know what might be causing this? This bug is in Firefox 3.

+1  A: 

Wrapping elements in a div styled "overflow: auto" fixed the issue. Any elements positioned absolutely in a scrolling container are going to wig out.

Kirk