Lets say I have a simple floated grid, made with susy (or anything else). How do I make the contents of one of the columns stick to the bottom of that column?
I tried verticle-align, align-items, and other combos, but no luck. And since it is made with floats, any time I put flexbox on it, it kills the layout of my buttons since they have an icon floated to the right.
What are some correct ways to do this? Here's my HTML:
<div class="col s2 action-buttons_container">
<button class="btn waves-effect waves-light action-button" type="submit" name="action">Hold Ticket <i class="material-icons right">pause</i></button>
<button class="btn waves-effect waves-light action-button" type="submit" name="action">Resolve Ticket <i class="material-icons right">check</i></button>
</div> <!--end .col.s2-->
.col has float:left applied automatically which cannot be removed.
CSS I tried
.action-buttons_container {
position: absolute;
}
.action-button {
position: relative;
bottom: 0;
}
Thanks for the help.

The simple answer is you can't, though it's maybe a bit misleading. There are ways to make it happen, but not using floats on their own. The
vertical-alignproperty only changes the alignment of items relative to inline flow,align-itemsonly works with flexbox.Flexbox might be a great option, and could replace floats (even using Susy). Instead of using Susy's
spanmixin, use flexbox with thespanfunction forflex-basise.gflex-basis: span(3 of 12).Your absolute positioning could also work. You'll want
position: relativeset on the overall container (which you did not include HTML for), and then something like this:That might need some minor adjustments depending on the grid details you didn't include.