Is it possible to expand an element with "overflow: hidden" when clicked without affecting other elements?
I'm looking for a solution that allows the expanded element to overlap and hide the element below it, rather than pushing it down. I've tried using "position: absolute", but this causes the next element to collapse to the top.
Here is what I have so far: http://jsfiddle.net/up6bW/2/
Can this be achieved solely through CSS on the clicked element? If adjustments to other elements are necessary, can they be calculated automatically using JavaScript?