I'm not completely sure what you mean. If you mean that the content doesn't scroll WITHIN the div, you could always try this:
CODE
<div style="overflow:hidden;">Text here</div>
That would hide any text that went beyond the limits of the div, however.
If you wanted a div that wouldn't scroll with the rest of your page, you can try this one:
CODE
<div style="position:fixed;">Text here</div>