Relative positioning is a fairly easy concept to grasp. If you relatively position an element,
it will stay exactly where it is. You can then shift the element “relative” to its starting point
by setting a vertical or horizontal position. If you set the top position to be 20 pixels, the
box will appear 20 pixels below the top of its original position. Setting the left position to
20 pixels will create a 20-pixel space on the left of the element, moving the element to the
right
#myBox {
position: relative;
left: 20px;
top: 20px;
}
