Tutorial & code
Bottom Aligned Modules in Columns
A simple CSS snippet that let you align modules to the bottom of columns.
Minimum BB plugin required: Lite Saved under: Rows
Skill level: Beginner Contributor: David Waumsley
Template Location
Video
Notes
The video here was made before the Beaver Junction plugin was created.
Note: This needs the columns to remain set to equal heights.

See the Bottom Aligned Modules in Columns template in action.
Code
CSS
/* This is added to the containing row, but can be added anywhere */ .bottom-aligned{ display: flex; align-content: flex-end; flex: 1 1 0; }/* This is need to allow the buttons to be full width */
.bottom-aligned > *{ flex: 1 1 100%; }