I have the following html :
<div style="height: 80px">
...
</div>
<div class="container-fluid">
<div class="row">
<div class="col-xs-2 col1">...</div>
<div class="col-xs-10 col2">...</div>
</div>
</div>
Both my col1 and my col2
are currently having height: auto;
However, my col2
is always gonna be bigger than my col1
.
I don't want my col2
to have a specific height. However, I would like my col1
to always be full height and so match whatever height col2
has.
How can I achieve this in css/sass ?