Forum Moderators: not2easy
another Monday morning challenge :) Today I've got a container with a fixed height and width, and overflow auto. Inside this container I've got a link that I always want at the top-right regardless of what the container's scroll position is. The container is absolutely positioned and could feasibly be at any place on the page. So my question is: Is there any way to achieve this layout without Javascript?
The major problem I suppose is that position:fixed always positions according to the viewport, not to the nearest positioned ancestor.