bootstrap怎么让button和input在一行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap怎么让button和input在一行相关的知识,希望对你有一定的参考价值。

给form添加form-inline 在页面width>=768px时 .form-control和.form-group都是inline-block,两者是同一行的
若要去处width的限制,可以给form添加.form-horizontal, 之后便可以利用栅格系统布局:
<form class="form-horizontal" action="/index.php/domain_admin/updateIframeUrl" method="POST">
<div class="form-group">
<input type="text" class="form-control col-xs-8" value="">
<div class="col-xs-4">
<button class="btn btn-sm btn-danger">-</button>
</div>
</div>
</form>
参考技术A button 和 input 是行内元素 默认就在一行 你可以看看下面这段代码然后运行看看效果 <!DOCTYPE html><html><head> <meta charset="utf-8">

以上是关于bootstrap怎么让button和input在一行的主要内容,如果未能解决你的问题,请参考以下文章

bootstrap中的模态框插件,点击遮盖层,模态框不消失,怎么让消失

bootstrap 怎样让按钮超链接

bootstrap怎么才可以记住class里的样式

跪求bootstrap是怎么自适应布局的

bootstrap中怎样让label和input在同一行?

bootstrap框架中怎么让table中显示checkbox?