How Can I Add A Scroll Bar Below A Div?
I have HTML like this:
EId
Solution 1:
You have a typo here: (missing colon)
<div style="width 130rem;">
since you're not defining a width for the inner element, there's nothing to scroll. Try changing it to
<div style="width: 130rem;">
and it should work. If not, then please post html or jsfiddle, but it should work just with this simple correction
Post a Comment for "How Can I Add A Scroll Bar Below A Div?"