更改引导模式中输入的位置

时间:2017-09-01 12:33:02

标签: jquery css bootstrap-modal

我正在使用squarespaceModal来创建一个包含表格的模态:

enter image description here

我希望在同一行上有前两个输入(名称和名字)。

这是实际的CSS代码:

   .center {
    margin-top:50px;   
}

.modal-header {
    padding-bottom: 5px;
}

.modal-footer {
        padding: 0;
    }

.modal-footer .btn-group button {
    height:40px;
    border-top-left-radius : 0;
    border-top-right-radius : 0;
    border: none;
    border-right: 1px solid #ddd;
}

.modal-footer .btn-group:last-child > button {
    border-right: 0;
}

目标是使向下滚动无效。

1 个答案:

答案 0 :(得分:1)

<style>
label, input {
  display: block; /*inputs are styled as block */
}
<style>

希望这能帮到你