Position values

Position: static states that the top, right, bottom, and left properties will be the same no matter

position: static

This part is out of the paragraph.
Position: relative sets its position to be relative with respect to the elements on top of it

position: relative;

This means that the top, right, bottom, and left properties will affect the position of the Paragraph.
Position: absolute sets its position relative to the closest parent and it set its position absolute with that.

position: absolute;

This means that the top, right, bottom, and left properties will get adjusted with respect to the nearest ancestor and then the position is set.