At the moment I`m nearly achieving that by playing around with the min-height CSS property
If it were me I’d just use the min-height
or even the height property
. Since the number of entries a widget contains can be set on the widget page then one can anticipate what the tallest value would be.
.widget-footer {
min-height: 355px;
}
If you really want to do it automatically you could try this:
#widgets-wrap-footer {
display: flex;
}
Seems to work on Firefox and Chrome, not sure about other browsers.
the actual content widgets I can tweak with spacing etc (but if you have a fix for that also that’ll be even better).
I’m not sure what you mean by this.