Here is a simple example of what you are trying to do:
<div>CSS container :
<style type="text/css">
#infinitescroller {
background-color: White;
width: 50%;
height: 200px;
}
</style>
<div>HTML container :
<div id="infinitescroller">
<div>
<p>Starting content</p>
</div>
</div>
Johnb source
share