I need to align my buttons to the same height. I already changed the height of the columns to the height amount of the longest column (493px). I just need to move the button down, so that it is at the same height of the longest column.
.col-sm-6.col-md-4.boxes {
background-color: red;
height: 493px;
/* height: 100%; */
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-4 boxes">
<figure class="panel panel-default">
<div class="panel-heading">
<img src="img/image.jpg" class="img-responsive">
</div>
<div class="panel-body">
<h3 class="panel-title">TITLE sample</h3>
SAMPLE TEXT .........
</div>
<div class="panel-footer"><a href="sample.aspx" class="btn btn-primary btn-block">BUTTON SAMPLE</a></div>
</figure>
</div>
<div class="col-sm-6 col-md-4 boxes">
<figure class="panel panel-default">
<div class="panel-heading">
<img src="img/image.jpg" class="img-responsive">
</div>
<div class="panel-body">
<h3 class="panel-title">TITLE sample</h3>
SAMPLE TEXT .........
SAMPLE TEXT ........
</div>
<div class="panel-footer"><a href="sample.aspx" class="btn btn-primary btn-block">BUTTON SAMPLE</a></div>
</figure>
</div>
<div class="col-sm-6 col-md-4 boxes">
<figure class="panel panel-default">
<div class="panel-heading">
<img src="img/image.jpg" class="img-responsive">
</div>
<div class="panel-body">
<h3 class="panel-title">TITLE sample</h3>
SAMPLE TEXT .........
SAMPLE TEXT ........
</div>
<div class="panel-footer"><a href="sample.aspx" class="btn btn-primary btn-block">BUTTON SAMPLE</a></div>
</figure>
</div>
</div>
</div>