Is it possible to position a DIV relative to another DIV? I imagine this can be done by first placing it inside of the reference DIV, and then using position: relative
position: relative
You want to use position: absolute while inside the other div.
position: absolute
DEMO