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
Just use position: relative instead of absolute, or add a negative margin-top: -10px instead.
position: relative
margin-top: -10px