foundation three boxes with text align links to the bottom of element
For some reason i had the request to align the links in three boxes with different height text, not sure why they wanted them aligned, but i guess my task is not too question that but to fix it.
I think the best solution to fix this is to set a min height on the lower box sections and then set the links to absolute bottom and this should align the links along one line.
Move these links to the bottom of the div, i think this makes it look too padded.
Measure the height of the largest box, and set min height on all of the boxes to that height, or a little bit more than that height.
Set that box to relative, so elements can be aligned to that box.
CSS
.section-box {
position:relative;
min-height: 505px;
}
Then set the links to absolute and bottom left, which will align all the links to the bottom of the box which is now set to the height of the largest box, so they should all align to each other.
This is also why i wrap my box links in divs, so then you dont have to worry about changing the display of the link elements to inline-block and can also make the elements easier to align.
CSS
.section-box-link {
position:absolute;
bottom:0px;
left:0px;
}
HTML
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.3/css/foundation.min.css" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
*,html,body {
font-family:"Poppins", sans-serif;
}
.section-box-image {
height: 200px;
width: 100%;
margin-bottom: 10px;
}
.sb1 .section-box-image {
background: url(https://unsplash.it/900/700) center no-repeat;
background-size: cover;
}
.sb2 .section-box-image {
background: url(https://unsplash.it/900/700) center no-repeat;
background-size: cover;
}
.sb3 .section-box-image {
background: url(https://unsplash.it/900/700) center no-repeat;
background-size: cover;
}
.section-box-text {
margin-bottom:10px;
text-align:justify;
}
.section-box-title {
font-size:22px;
margin-bottom:10px;
font-weight:bold;
}
</style>
<div class="section-boxes">
<div class="grid-x grid-margin-x">
<div class="large-4 cell">
<div class="section-box sb1">
<div class="section-box-image">
</div>
<div class="section-box-title">
Lorem ipsum dolor sit amet
</div>
<div class="section-box-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis rutrum sapien non ornare sagittis. Fusce quis dignissim felis. Pellentesque iaculis nisl et est ultricies, id mollis lorem volutpat. Praesent nec nunc vel quam facilisis scelerisque a ut orci. Sed sed enim vestibulum ex commodo venenatis vitae in mi. In eu velit sed nunc euismod tempor ac at odio. Mauris sit amet mi ac turpis rutrum congue sit amet id nunc.
</div>
<div class="section-box-link">
<a href="#!">More Link</a>
</div>
</div>
</div>
<div class="large-4 cell">
<div class="section-box sb2">
<div class="section-box-image">
</div>
<div class="section-box-title">
Lorem ipsum dolor
</div>
<div class="section-box-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis rutrum sapien non ornare sagittis. Fusce quis dignissim felis. Pellentesque iaculis nisl et est ultricies, id mollis lorem volutpat. Praesent nec nunc vel quam facilisis scelerisque a ut orci. Sed sed enim vestibulum ex commodo venenatis vitae in mi. In eu velit sed nunc euismod tempor ac at odio.
</div>
<div class="section-box-link">
<a href="#!">More Link</a>
</div>
</div>
</div>
<div class="large-4 cell">
<div class="section-box sb3">
<div class="section-box-image">
</div>
<div class="section-box-title">
Lorem ipsum dolor sit
</div>
<div class="section-box-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis rutrum sapien non ornare sagittis. Fusce quis dignissim felis. Pellentesque iaculis nisl et est ultricies, id mollis lorem volutpat. Praesent nec nunc vel quam facilisis scelerisque a ut orci. Sed sed enim vestibulum ex commodo venenatis vitae in mi.
</div>
<div class="section-box-link">
<a href="#!">More Link</a>
</div>
</div>
</div>
</div>
</div>