Issue:
I'm currently working on a relatively intricate ListGroup using bootstrap v4.
The .flex-row
div is displaying some mysterious white space at the bottom, and I need assistance in eliminating it.
Attempts Made So Far:
I've experimented with explicitly setting widths (w-XX
) and adjusting the align-items
style, which seems to address the issue slightly. However, I sense that there might be a more appropriate solution that I am missing.
PS: Even if my current approach resolves the problem, I still desire an understanding of why that pesky whitespace exists in the first place.
PSS: I am fairly new to flexbox styling, so please do not omit any information, no matter how basic you think it may be.
Screenshots:
Code Snippet:
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<div class="row">
<div class="list-group col-12">
<!-- Insert list group items here -->
</div>
</div>