kjtocool Posted August 31, 2008 Share Posted August 31, 2008 Basically, I have an empty div. I then use javascript to fill it with content. As of now, when it is filled, the div bumps everything below it down. Instead, I want it to overlap what's below it, and have what's below it stay right where it was, with some of it now being hidden. An example is google suggest, when you type something, the suggestions overlap the buttons. Any help is much appreciated! Quote Link to comment Share on other sites More sharing options...
dropfaith Posted August 31, 2008 Share Posted August 31, 2008 look up absolute posistioning and z index in css Quote Link to comment Share on other sites More sharing options...
TheFilmGod Posted September 1, 2008 Share Posted September 1, 2008 Html: <div class="parent_div"> <div class="overlay"> <p>content goes here</p> </div> </div> css: #parent_div { position: relative; } #overlay { position: absolute; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.