By using a div
with style z-index:1;
and position: absolute;
you can overlay your div
on any other div
.
z-index
determines the order in which divs 'stack'. A div with a higher z-index
will appear in front of a div with a lower z-index
. Note that this property only works with positioned elements.