I'm struggling to find a suitable title for this issue. Essentially, I have a box-shaped div that expands into a rectangle and reveals content when clicked.
The problem arises when I animate the div's width during expansion. Instead of positioning the content in the expanded area, the browser tries to render it as the box stretches.
Initial State
____
| |
|____|
Clicked
_________________
| Content |
|_________________|
Current Rendering
__________
| Con |
|______tent|
Desired Rendering:
__________
| Cont|ent (overflow:hidden)
|__________|
I could really use some assistance with this... total mental block.