this is the wrapper

2. position: relative
If you specify
position: relative,
then you can use:
top, bottom, left or right
to move the element
relative to where it would normally occur in the document.

#stuff{
position:relative;
top:-100px;
right:40px;
}

Next >

3. position: absolute

When you specify position:absolute,
the element is removed from the document and placed exactly where you tell it to.

#absoluteStuff{
position:absolute;
top:0;
right:0;
width:200px;
}
?. position: fixed
not talked about in: Learn CSS Positioning in Ten Steps

When you specify position:fixed,
the element is removed from the document and placed exactly where you tell it to. But, unlike "absolute" it stays in place when you scroll up & down or side-to-side.

#fixedStuff{
position:fixed;
bottom:5px;
left:20px;
}