(I really didn't know how to title this. Anyway!)
I have a couple of HTML buttons stacked vertically, which I consider the parent level. When you hover over a button, I have a div (or the child level) appear to the right of the button. To force the div to the right, I use position:relative;...
position:relative;
top:-25px;
left:200px;
but the buttons underneath the hovered button get pushed down like the div existed below the button.
How can I show the child div without the buttons being pushed down, while keeping the tops of the parent button and child div lined up?
Here's a jsfiddle as an example: http://jsfiddle.net/8Mbyu/