I'm having trouble aligning the div at the bottom of the flex box. I attempted to use align-content: flex-end; but it didn't work.
Is there a way to keep the <.div class="parameters"> at the bottom of the row? Especially when the content in the row above this bottom part varies in length.
https://i.stack.imgur.com/FMCjc.png
.product--5-cols {
max-width: 23%;
min-width: 250px;
-webkit-flex-basis: 23%;
-ms-flex-preferred-size: 23%;
flex-basis: 23%;
border-width: 0 1px 1px 0;}
.compare {
display: flex;
flex-direction: row;
justify-content: flex-start;
flex-wrap: nowrap;
overflow-x: scroll;
align-items: stretch;}
<div class="product-overview compare" id="product-compare">
<div class="product--5-cols">
<h2 id="products-to-compare" class="compare-page-title">Comparison (5)</h2>
<div class="parameters">
<div class="compare-product-parameters-white" id="compare-sock"><span class="in-stock in-stock--up">In Stock</span></div>
<div class="compare-product-parameters-blue" id="compare-brand">Solight</div>
<div class="compare-product-parameters-blue"><span class="in-stock in-stock--up">Replenishing</span></div>
</div>
</div>
<div class="product--5-cols">
<div class="product product--5-cols">
<div class="product__labels">
</div>
<div class=" compare_page_heading">
<h5><a href="product-detail.html">Light Model Security Camera, Wall Mount, LED Light</a></h5>
</div>
<div class="product__info"><div class="product-row__actions"><a class="remove" href="#" title="Delete"><i class="icon icon-close">
<div class="sr-only">Delete</div></i></a></div></div><a class="product__img" href="product-detail.html"><img src="assets/images//samples/product-1.jpg"></a>
<div class="product__price compare_page_price"><strong>19 306 CZK</strong></div>
<div class="product__footer">
<a class="item compare_page_icon" href="#"><i class="icon icon-heart" title="Favorite"></i></a>
<div class="product__buy compare_page_buy">
<div class="form-control-wrapper">
<div class="counter"><a class="counter__plus" href="#">+</a><a class="counter__minus" href="#">-</a></div>
<input class="form-control" type="number" value="1"><span class="units">pcs</span>
</div>
<button class="btn btn-primary btn-xlg" title="Buy"><i class="icon icon-add-to-cart"></i></button>
</div>
</div>
</div>
<div class="parameters">
<div class="compare-product-parameters-white" id="compare-sock"><span class="in-stock in-stock--up">In Stock</span></div>
<div class="compare-product-parameters-blue" id="compare-brand">Light</div>
<div class="compare-product-parameters-blue"><span class="in-stock in-stock--up">Replenishing</span></div>
</div>
</div>