连接输入字段和按钮引导模式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了连接输入字段和按钮引导模式相关的知识,希望对你有一定的参考价值。

我正在尝试连接我的输入字段和按钮,同时保持字段以我的模态为中心。 IE没有向左或向右浮动

Currently it looks like this.

I want it to look like this.

html ---

                <div class="input-append">
                    <input id="input-zip" type="search" placeholder="Enter zip code"/>
                    <span class="input-btn">
                        <button type="button" class="btn btn-zip" data-dismiss="modal">CONTINUE</button>
                    </span>
                </div>

CSS ----

.btn-zip {
    float: right;
    background: map-get($colors, bg-btn-card);
    color: map-get($colors, button-text);
    border-radius: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    display: table;
    margin-bottom: 10px;
}

JQUERY--

$(window).load(function()
{
    $('#zip-modal').modal('show');
});
答案

Flex来救援:

.input-append{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    }

width: 100% - 展开元素以水平拟合整条线,从该宽度开始计算中心

justify-content - 内部物品水平居中

align-items - 内部物品垂直居中

以上是关于连接输入字段和按钮引导模式的主要内容,如果未能解决你的问题,请参考以下文章

单击按钮验证引导模式字段

如何使用 Angular 5 和引导程序放置 x 按钮以清除输入字段中的内容

如何使整个表单(输入和提交按钮)在焦点上更改边框颜色(引导程序 3)

Twitter 引导模式输入字段焦点

Twitter 引导模式输入字段焦点

当输入字段获得焦点时,按钮被输入字段隐藏