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.

In javascript I need to show div content on the center of the browser window; Content of the window is high therefore it has a scroll.

How can I set up div element on the center of the screen independently of the scroll ?

Thanks!

share|improve this question
So you want a div overlay that remains fixed when you scroll the page? – PseudoNinja Dec 21 '10 at 13:24

2 Answers

up vote 8 down vote accepted

You can use this CSS (You don't need javascript for that):

#divID{
  width:500px;   /* adjust */
  height:500px;  /* adjust */
  top:50%;
  left:50%;
  margin-left: -250px;  /* half of the width */
  margin-top: -250px;  /* half of the height */
  position:fixed;
}

You can check out the demo here including scrolling

You can make the div pretty with additional CSS.

Check out demo

share|improve this answer
something like that works for me. Thanks! – ihorko Dec 21 '10 at 15:37
Great tip! Thanks – Sekar May 20 '11 at 7:10

You want a CSS property, not JS. What you need to make it scroll is overflow:scroll;. Add that to the CSS used on the box.

share|improve this answer

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.