Position: Relative

normal flow
This text is positioned 5 pixels below where it would usually appear using the following code:
.relative {
position: relative;
top: 15px;
left: 15px;
background-color: #eeeeee;
padding: 5px;
}