The CSS specification requires that position:fixed be anchored to the viewport, not the containing positioned element.
If you must specify your coordinates relative to a parent, you will have to use JavaScript to find the parent's position relative to the viewport first, then set the child (fixed) element's position accordingly.
UPDATE: WebKit (Chrome, Safari, iOS browsers, and a few others) have added preliminary support for -webkit-sticky which limits an element to be positioned within both it’s container and the viewport. Per the commit message:
-webkit-sticky ... constrains an element to be positioned inside the intersection of its
container box, and the viewport.
A stickily positioned element behaves like position:relative (space is
reserved for it in-flow), but with an offset that is determined by the
sticky position. Changed isInFlowPositioned() to cover relative and
sticky.
Depending on your design goals, this behavior may be helpful in some cases. Of course, it is preliminary, only in the very latest versions of WebKit, and not close to a standard yet.