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.
My Code is Here
EDIT
Another example showing my problem clearly.
I have a second problem now: the second line disappeared...why
For the list items you need to set the display
property to inline-block
and set the min-width
property to 100%. Here's your jsFiddle, and see below:
div {
width: 400px;
overflow-x: scroll;
}
li {
min-width: 100%;
white-space: nowrap;
display: table-row; /* or inline-block */
}
.a, .c, .e, .g {
background-color: red;
}
.b, .d, .f {
background-color: blue;
}
EDIT
To make all of the li
elements the width of the longest li
, use display: table-row
.
See this jsFiddle for a demonstration.
li {
min-width: 100%;
white-space: nowrap;
display: table-row;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With