An element with the position relative is positioned relatively to its normal position. You adjust the positioning by changing its left, top, right, or bottom position.
For example:
div.relative-element {
position: relative;
top: 50px;
left: 50px;
}
Check the following diagram for better understanding:
