如何使所有 Contact 7 字段大小相同?

How to make all Contact 7 Fields the same size?

我有这个 site,但我无法让联系表 7 中的所有字段都具有相同的大小,例如 "Submit" 按钮。我试图插入这个我在某处找到的 CSS,但没有做任何更改。

.wpcf7-form {
max-width: 750px;
margin: auto;
}

如何使我页面中联系表单中的所有字段具有相同的高度和宽度?谢谢

我在你的链接网站上看到,由于你的标签,它没有全宽。以下 css 将帮助您获得相同的宽度。

form.wpcf7-form label {
    width: 100%;
}

希望对您有所帮助。