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! Link to comment https://forums.phpfreaks.com/topic/122128-how-do-you-get-a-div-to-overlap-other-html/ 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 Link to comment https://forums.phpfreaks.com/topic/122128-how-do-you-get-a-div-to-overlap-other-html/#findComment-630655 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; } Link to comment https://forums.phpfreaks.com/topic/122128-how-do-you-get-a-div-to-overlap-other-html/#findComment-630671 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.