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 have in my page a button which when clicked display a div(popup style) in the middle of my screen.

I am using the following css to center the div in the middle of the screen.

.PopupPanel
{
    border: solid 1px black;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: white;
    z-index: 100;

    height: 400px;
    margin-top: -200px;

    width: 600px;
    margin-left: -300px;
}

It works fine as long as the page is not scrolled down..

But if i place the button at the bottom of my page and clicks on it, the div is displayed at the top (user has to scroll up to view the div's contents).

I would like to know how to display the div in the middle of the screen, whether user has scrolled up/down.

Thanks a lot for your help :)

share|improve this question

3 Answers

up vote 40 down vote accepted

Change the position attribute to "fixed" instead of "absolute".

share|improve this answer
5  
+1 to the fastest gun – Richard JP Le Guen Jun 13 '11 at 18:23
Lovely...thanks :) – tanya Jun 13 '11 at 18:28
@tanya - Don't forget to mark the answer as accepted if it solved your problem. :) – Shauna Jun 13 '11 at 19:21
1  
What about if you need to scroll the pop up div and its larger than the screen? – Darcbar Feb 27 '12 at 15:32
@Darcbar then you're screwed or you have just a scrollbar inside the popup ;) – EaterOfCorpses Jan 7 at 10:40
show 1 more comment

Change position:absolute; to position:fixed;

share|improve this answer
4  
+1 to the second-fastest gun :P – BraedenP Jun 13 '11 at 18:28
@BraedenP - Thanks! – Richard JP Le Guen Jun 13 '11 at 18:32

Quote: I would like to know how to display the div in the middle of the screen, whether user has scrolled up/down.

Change

position: absolute;

To

position: fixed;

W3C specifications for position: absolute and for position: fixed.

share|improve this answer
+1 for links to documentation, although the quote doesn't seem necessary to me. – Dreamonic May 13 at 8:02
2  
@Dreamonic, a simple quote clarifies wordy questions and keeps short answers relevant even after a question is edited. Concise is good. Clear and concise is better. – Sparky May 13 at 20:33
I didn't consider that. Well, I'd say job well done! – Dreamonic May 14 at 9:44

protected by Sparky May 13 at 20:35

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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