<div class="panel panel-primary" id="result_panel">
<div class="panel-heading"><h3 class="panel-title">List of Results</h3>
</div>
<div class="panel-body">
<ul class="list-group">
<li class="list-group-item"><strong>Signature Accommodations</strong>(1480m)
</li>
# many li here..
<li class="list-group-item"><strong>The Barrington At Park Place</strong>(15210m)
</li>
<li class="list-group-item"><strong>Camden Huntingdon Apartments</strong>(15820m)
</li>
<li class="list-group-item"><strong>Enclave at Water's Edge Apartments</strong>(15830m)
</li>
</ul>
</div>
</div>
Here is a snippet of my HTML code showing the list of results. I anticipate having many items in this list which may exceed the window size, https://i.stack.imgur.com/RJmyb.jpg
I attempted to adjust the CSS like so:
.list-group{
margin-bottom: 10px;
overflow:scroll;
-webkit-overflow-scrolling: touch;
}
Unfortunately, this solution did not resolve the issue. Any suggestions for a fix?