Demo of <DIV> Div Position : fixed

I am fixed, I will not move along with the page up or down. Scroll down or up to see my position



















HTML

<div id=d1 class=my_div1>I am fixed, I will not move along with the page up or down. Scroll down or up to see my position </div>



Style

<style>
.my_div1 { 
 position: fixed;
}
</style>