Skip to content

Instantly share code, notes, and snippets.

@yasu-s
Created November 24, 2016 14:36
Show Gist options
  • Save yasu-s/b68d1449857a779a07a411952fde37c7 to your computer and use it in GitHub Desktop.
Save yasu-s/b68d1449857a779a07a411952fde37c7 to your computer and use it in GitHub Desktop.
list-groupにscrollbar追加
<div class="container-fluid" style="height: 100vh;">
<div class="row" style="height: 10%; background-color: yellow;">
10
</div>
<div class="row" style="height: 80%; background-color: greenyellow;">
<ul class="list-group" style="max-height: 100%; overflow-y:scroll; ">
<li class="list-group-item">item1</li>
<li class="list-group-item">item2</li>
<li class="list-group-item">item3</li>
<li class="list-group-item">item4</li>
<li class="list-group-item">item5</li>
</ul>
</div>
<div class="row" style="height: 10%; background-color: aqua;">
10
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment