Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Can’t Get Divs Right Re: Can’t Get Divs Right

#88871
IamShaw
Member

In it’s simplest terms you can use ‘position’ to achieve that.






Then the CSS would look a little some thing like this:


.content {
height: 150px;
position: relative;
}

.nav {
position: absolute;
top: 0;
left: 0;
z-index: 1;
}

This is the simplest way I would assume?