Webform 上的按钮未显示在相同的高度上

Buttons on webform not displayed on an equal height

我在网络表单上有两个按钮,它们的显示高度不同。这发生在我更新 Gravity Forms 之后。

http://topdek.nl/prijs/, enter a random name, email address and phone number, click 'Volgende' (Next), then choose any of the two options, and on the last step you will see two buttons on the bottom of the webform ('Vorige' and 'Verzenden'). Example: http://i.imgur.com/1rIrCFz.png

我想知道是否有人知道如何使用 CSS 解决这个问题?

谢谢:)

您 css 中的以下代码影响了第一个按钮并导致了问题。将该代码更改为 margin-bottom: 0;

.gform_wrapper .gform_page_footer .button.gform_previous_button {
  margin-bottom: .5em;
}