Posted in foundation
8837
11:51 pm, October 14, 2021
 

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">
          &nbsp;
        </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">
          &nbsp;
        </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">
          &nbsp;
        </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>

View Statistics
This Week
286
This Month
1053
This Year
829

No Items Found.

Add Comment
Type in a Nick Name here
 
Related Search Terms
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote


Me
Random CSS Property

contrast()

The contrast() CSS function adjusts the contrast of the input image. Its result is a <filter-function>.
contrast() css reference