Created
November 24, 2016 14:36
-
-
Save yasu-s/b68d1449857a779a07a411952fde37c7 to your computer and use it in GitHub Desktop.
list-groupにscrollbar追加
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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