I am attempting to create a row with three divs positioned side by side:
Within the divs, I want the middle one to always be vertically aligned in the middle while the other two are aligned at the top.
I initially achieved this using the following settings
Container:
display:table
Row:
display:table-row
Cell:
display:table-cell with float:none
While this setup worked well, the new requirement is that only the last div should be vertically aligned at the bottom (refer to attachment 2):
However, I have been unsuccessful in achieving this as the display table cell and vertical-align:top properties on the left and right divs do not allow for vertical alignment at the bottom.
I also attempted to utilize position absolute on the last div, but determining whether the variable height of the div is greater on the left or right side proved to be a challenge.
Thank you for any assistance you can provide!