I am currently in the process of creating a directory website. To build it, I chose the Jekyll Moonwalk theme as a solid foundation and am customizing it heavily to suit my requirements.
Since this is my inaugural website project, I'm learning as I progress. At this moment, I'm focused on ensuring that my HTML button elements "stick" to the bottom of their respective containers, aligning perfectly in a row rather than appearing at the bottom of the text content. Here is a preview of the current state:
Image
The red line indicates approximately where I envision the bottom of all the buttons should be.
Although I attempted ChatGPT's suggestion, it unfortunately did not yield the desired outcome.
<div style="position: relative;">
<button style="position: absolute; bottom: 0;">Click Me</button>
</div>