Hi, I’m trying to do it so all 3 columns in my row are the same height. I found a post with a link to some CSS which also aligns the buttons to the bottom, but the column heights still aren’t the same (the buttons are aligned though which is great!).
Here’s the link with instructions to Method 1: Flexbox I’ve used:
https://michaelbourne.ca/create-columns-equal-heights/286/
Here’s the CSS:
.flexmethod {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-line-pack: stretch;
align-content: stretch;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.x-container:before {
content: normal;
}
.container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.item-button {
margin-top: auto;
}
.x-container:before {
content: normal;
}
I’ll put the URL to my web page in a secure link as it’s a test page at the minute and here’s a screen grab for your reference:
Thanks!