连接输入字段和按钮引导模式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了连接输入字段和按钮引导模式相关的知识,希望对你有一定的参考价值。
我正在尝试连接我的输入字段和按钮,同时保持字段以我的模态为中心。 IE没有向左或向右浮动
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 按钮以清除输入字段中的内容