loop through text list
by jorgeluis
HTML
<ul class="list-rotator">
<li>Item 1</li>
<li>and now, Item 2</li>
<li>let's not forget #3</li>
<li>last but not least, Four</li>
</ul>
CSS
ul {
position: relative;
}
li {
position: absolute;
border: solid 1px #ccc;
background-color: #fff;
}