Div, который всегда будет оставаться вверху страницы (в данном случае 5px сверху):
CSS:
.mydiv {
position: absolute;
top: 5px; /* or however far you want it from the top of the page */
}
HTML:
<div class="mydiv">this will always be 5px from the top of the page</div>