Currently, I am utilizing Bootstrap 3 while also attempting to organize my styles in a modular manner like so:
(the unneeded <span>s
are created by React and I'm unsure how to remove them...)
html
<div class="row">
<span></span>
<div class="Module">
<span></span>
<div class="col-xs-3">
<span></span>
<div class="thumbnail-wrapper">
<span><img alt="My something" class="img-thumbnail" src="/static/media/avatar.96308863.png"></span>
<div class="img-thumbnail-close-btn hidden">
<span><span class="fa-stack fa-1x"><i class="fa fa-circle fa-stack-2x white-background"></i><i class="fa fa-circle-thin fa-stack-2x black-border"></i><i class="fa fa-times fa-stack-1x"></i></span></span>
</div>
</div>
</div>
</div>
</div>
Module
does not have any height, however col-xs-*
and row
do.
- Why is this the case?
- Additionally, how can I make
Module
full height?