In susyless CSS, I could make containers with various content lengths grow to the height of of their tallest sibling using display: table
and display: table-cell
.
.not-susy {
.short {
width: calc(100%/12 * 8);
}
.wrap{
display: table;
border-spacing: 20px;
}
.item {
margin: 5px;
display: table-cell;
}
}
However this trick isn't working with Susy; How can I acheieve this same layout trick with Susy?