我无法使按钮居中

时间:2016-05-30 20:32:58

标签: css wordpress twitter-bootstrap twitter-bootstrap-3

我想让这个按钮看起来不错。

该表格应分为4列:

3表示文本字段,最后一个表示应该是提交按钮。

你能否帮助我让它与文本字段具有相同的高度和填充

链接: http://draidel.com.ar/tienda/promotoras/marina/

Screenshot

2 个答案:

答案 0 :(得分:1)

试试这个

.wpcf7-form-control.wpcf7-submit {
   height: 45px;
   margin-top: 24px;
   margin-left: 6px
}

答案 1 :(得分:0)

试试这个

.body .main_color input[type='submit'] {
    margin-top: 26px;
    margin-left: 5px;
}

此外,您还可以添加媒体查询以响应

@media screen and (max-width: 480px) {
    .body .main_color input[type='submit'] {
    margin-top: 10px;
    margin-left: 0px;
    }
}