I am trying to make an overlapping a DIV onto other visually . I am trying
{
position:absolute;
top:-10px;
}
in css, but I found that this top
Here's an easy way
.top {
position: relative;
}
.topabs {
position: absolute;
}
I'm the top div
No styles, just frowns :(
The relative positioned div collapses as there are no contents, causing the coordinates 0,0 coordinates of the absolute positioned div to be that of the div underneath.
http://jsfiddle.net/y5SzW/