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 ceated a dropdown menu using the following css

.menu li ul {display: none;}
.menu li:hover > ul {display: block;}

But the problem is whenever the menu dropsdown the content below shifts down. How can I prevent that.

share|improve this question

1 Answer

up vote 2 down vote accepted

You can prevent that by positioning the sub menu absolute.

.menu li ul {display: none; position: absolute; }

You also have to set

.menu { position: relative; }

as said in the comment by Tae. If you do not, the sub menu will probably set to the top left corner of the page.

share|improve this answer
2  
Don't forget to make the menu position:relative;, or the submenu will be positioned relative to the browser window. – Tae Jun 8 '11 at 16:43
Very good point! I add this to the answer. – DanielB Jun 8 '11 at 16:44

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.