Take a look at this : example of horizontal scroll
I'm looking to place a large amount of text in a fixed-size container and have it wrap properly. However, when I try adding lengthy text in the fiddle, it overflows instead of wrapping around.
<div class="DocumentList">
<ul class="list-inline">
<li class="DocumentItem">
<span>Insert lots of text here and it spills over instead of wrapping</span>
</li>
... // Additional list items here
</ul>
</div>
What I envision is a series of divs with extensive text content (e.g., 200 by 200 dimensions) that require horizontal scrolling to view all items in the list.
Can anyone provide guidance on achieving this using the provided fiddle or any alternative method?