Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a div with default display:none. how do I reserve the height so when the div shows, it does not reshift the elements around it? thanks

share|improve this question

3 Answers

up vote 5 down vote accepted

Instead of putting display: none; on your div, put visibility: hidden;. It will be invisible, but still take up space.

share|improve this answer

Use visibility: hidden instead of display: none. Your element won't display, but its dimensions still apply and affect other elements because it's still a part of the page flow.

share|improve this answer

if you can use visiblity hidden property instead of display:none you can achieve what you want.

When you do visibilty:hidden it just make the elements opacity to 0 while the element is still retaining its space.

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.