Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I find that when I position an element fixed, it doesn't matter if the parent is positioned relative or not, it will position fixed, relative to the window?

CSS

#wrapper { width: 300px; background: orange; margin: 0 auto; position: relative; }
#feedback { position: fixed; right: 0; top: 120px; }

HTML

<div id="wrapper">
    ...
    <a id="feedback" href="#">Feedback</a>
</div>

http://jsbin.com/ibesa3

share|improve this question
Right answer is here stackoverflow.com/questions/4962266/… – Soyoes Apr 17 at 10:50
My answer, your chosen answer, is getting extremely downvoted. Could you update your question, or choose a different answer to be your selected answer? :) – DuckMaestro May 20 at 8:12

6 Answers

up vote -4 down vote accepted

To position an element "fixed" relative to a parent, what you actually want is position:absolute on the child element, and any position mode other than the default or static on your parent element.

For example:

#parentDiv { position:relative; }
#childDiv { position:absolute; left:50px; top:20px; }

This will position the childDiv element 50 pixels left and 20 pixels down relative to parentDiv's position.

Edit: After your edits to the question, and as others have later answered, to position fixed relative to the window, you need position:fixed, and can use top:, left:, right:, and bottom: to position as you see fit.

Example:

#yourDiv { position:fixed; bottom:40px; right:40px; }
share|improve this answer
4  
oh, hmm... I actually want to mimic a sticky button, when its positioned absolute, when I scroll down, it doesn't sticky ... hmm – Jiew Meng Mar 6 '11 at 10:49
1  
@jiewmeng wants his child element to be "fixed" meaning that when you scroll down the child would still be visible and in the same spot on the screen. – Web_Designer Jun 25 '11 at 5:33
1  
Been looking for this for a month or so, this is the first time it was actually explained beyond "use absolute and fixed" or some nonsense. +1 – tkbx Dec 22 '12 at 17:29
Not what the OP was asking... – Will Feb 21 at 4:32
1  
@DuckMaestro I agree! – Will Feb 22 at 20:30
show 1 more comment

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.

share|improve this answer
7  
This answer should be accepted. The other one is false. – rayfranco Aug 20 '12 at 20:17
2  
@rayfranco: DuckMaestro's answer isn't false really—it just doesn't exactly answer the op's question. Well, it answers his original question assuming the op only needs relative. But when op clarified in comments he does indeed want position:fixed and position:relative characteristics combined, then this answer becomes a little more helpful. – Jon Adams Aug 21 '12 at 19:54
@rayfranco: It's been a long time though; my guess is the op changed his design to match DuckMaestro's answer (which is a simpler design) and that is why it was accepted? – Jon Adams Aug 21 '12 at 20:00
2  
@Jon, you can actually see the edit history if you click the date-time after the post's "edited" note. – JohnK Sep 19 '12 at 22:15
1  
@JohnK I know. By "changed his design" I meant the final code the op used on the site — not a change to the question asked here. – Jon Adams Sep 20 '12 at 1:17
show 1 more comment

first, set position: fixed and left: 50%, and second — now you're start is a center and you can set new position with margin.

share|improve this answer
This is actually problem solving answer. – Frodik Feb 24 at 10:28
This worked perfectly for me! – arlomedia May 2 at 18:06

Here is an example of Jon Adams suggestion above in order to fix a div (toolbar) to the right hand side of your page element using jQuery. The idea is to find the distance from the right hand side of the viewport to the right hand side of the page element and to keep the right hand side of the toolbar there!

HTML

<div id="pageElement"></div>
<div id="toolbar"></div>

CSS

#toolbar {
    position: fixed;
}
....

jQuery

function placeOnRightHandEdgeOfElement(toolbar, pageElement) {
    $(toolbar).css("right", $(window).scrollLeft() + $(window).width()
    - $(pageElement).offset().left
    - parseInt($(pageElement).css("borderLeftWidth"),10)
    - $(pageElement).width() + "px");
}
$(document).ready(function() {
    $(window).resize(function() {
        placeOnRightHandEdgeOfElement("#toolbar", "#pageElement");
    });
    $(window).scroll(function () { 
        placeOnRightHandEdgeOfElement("#toolbar", "#pageElement");
    });
    $("#toolbar").resize();
});
share|improve this answer

I know this is an older post, but I think a good example of what Jiew Meng was trying to do can already be found on this site. Check out the side menu located here: http://stackoverflow.com/faq#questions. Looking at it without getting into it too deep, I can tell javascript attaches a fixed position once the scrolling hits below the anchor tag and removes the fixed positioning if the scrolling goes above that same anchor tag. Hopefully, that will get someone started in the right direction.

share|improve this answer

You need to create a div with position:relative, insert in that div in your container width position:absolute, left:0px and top:0px; and insert a button with position:relative and top and left as you need. Button will behave as it is positioned fixed.

share|improve this answer
This isn't quite right, a true fixed element will remain in the viewport while scrolling, whilst an absolutely positioned element will scroll with the with the parent element. – Simon 13 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.