HTML code like this:
<div>
<ol>
<li class='a'>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</li>
<li class='b'>bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb</li>
</ol>
</div>
CSS code like this:
div {
width: 400px;
overflow-x: scroll
}
.a {
background-color: red;
}
.b {
background-color: blue;
}
When I scroll the scroll bar, I see that the background color is only applied to the original unscrolled region. How can I solve this problem.
EDIT
Another example showing my problem clearly.
I have a second problem now: the second line disappeared...why

<li>is inline, but it's list-item. +1 – Anubhav Saini Apr 12 '12 at 16:30