您好,欢迎访问一九零五行业门户网

bootstrap表单怎么居中

bootstrap通过一些简单的 html 标签和扩展的类即可创建出不同样式的表单。
bootstrap提供了多种表单布局,不过我们最常用的就是表单居中,也叫水平表单。
水平表单与其他表单不仅标记的数量上不同,而且表单的呈现形式也不同。(推荐学习:bootstrap视频教程)
如需创建一个水平布局的表单,请按下面的几个步骤进行:
向父 <form> 元素添加 class .form-horizontal。
把标签和控件放在一个带有 class .form-group 的 <div> 中。
向标签添加 class .control-label。
实例:
<!doctype html><html><head> <meta charset="utf-8">  <title>bootstrap 实例 - 水平表单</title> <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">   <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script></head><body><form class="form-horizontal" role="form"> <div class="form-group"> <label for="firstname" class="col-sm-2 control-label">名字</label> <div class="col-sm-10"> <input type="text" class="form-control" id="firstname" placeholder="请输入名字"> </div> </div> <div class="form-group"> <label for="lastname" class="col-sm-2 control-label">姓</label> <div class="col-sm-10"> <input type="text" class="form-control" id="lastname" placeholder="请输入姓"> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <div class="checkbox"> <label> <input type="checkbox"> 请记住我 </label> </div> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <button type="submit" class="btn btn-default">登录</button> </div> </div></form></body></html>
更多bootstrap相关技术文章,请访问bootstrap教程栏目进行学习!
以上就是bootstrap表单怎么居中的详细内容。
其它类似信息

推荐信息