如何使两个小部件的高度相同?

How to make both widgets in the same height?

我在 Wordpress site 中的一个页脚小部件有问题。当在地址小部件中添加超过 2 行时,第二个联系人小部件自动下降,并且其高度未对齐。如何让两个小部件显示在同一个位置?

问题图片:

两个小部件具有相同的 CSS class:

.footer-contact-block

如果您使用:

.footer-contact { display: table; } 
.footer-contact-block { display: table-cell; }

您将获得相同高度的两个小部件。

这就是你想要的?