文章27 | 阅读 11955 | 点赞0
点此查看:完整教程、源代码及配套视频
HTML自带的表单没有样式可言,非常难看。
Bootstrap提供了样式优雅大方的表单,拿来即用,非常nice。本篇就来讲解下Bootstrap框架下表单样式的设置方法。
我们先来看下HTML自带的表单是啥样的。
<form action="#">
<label for="user-name">姓名</label>
<input type="text" id="user-name">
<label for="user-age">年龄</label>
<input type="text" id="user-age">
<label for="user-phone">手机号</label>
<input type="text" id="user-phone">
<input type="submit" value="提交">
</form>
效果如下,样式真是马马虎虎。
如果使用Bootstrap设置表单,只需要将表单控件放入.form-group
类的div中,并对表单控件添加.form-control
类。
需要注意的是,Boostrap默认表单使垂直表单,即从上往下排列显示。
代码:
<form action="#">
<div class="form-group">
<label for="user-name">姓名</label>
<input type="text" id="user-name" class="form-control">
</div>
<div class="form-group">
<label for="user-age">年龄</label>
<input type="text" id="user-age" class="form-control">
</div>
<div class="form-group">
<label for="user-phone">手机号</label>
<input type="text" id="user-phone" class="form-control">
</div>
<div class="form-group">
<input type="submit" value="提交" class="form-control">
</div>
</form>
效果如下,样式还是非常大气的。
默认的垂直表单看起来并不习惯,绝大多数表单还是习惯使用水平表单的形式,即文字和控件是水平排列的。
可以通过三个步骤,将表单转换为水平表单。
<form>
标签添加.form-horizontal
类<label>
标签添加.control-label
类代码如下:
<!-- 水平表单 -->
<div class="col-md-12">
<form action="#" class="form-horizontal">
<div class="form-group">
<label for="user-name" class="control-label col-md-3">姓名</label>
<div class="col-md-9">
<input type="text" id="user-name" class="form-control">
</div>
</div>
<div class="form-group">
<label for="user-age" class="control-label col-md-3">年龄</label>
<div class="col-md-9">
<input type="text" id="user-age" class="form-control">
</div>
</div>
<div class="form-group">
<label for="user-phone" class="control-label col-md-3">手机号</label>
<div class="col-md-9">
<input type="text" id="user-phone" class="form-control">
</div>
</div>
<div class="form-group">
<div class="col-md-3"></div>
<div class="col-md-9">
<input type="submit" style="width:200px;" value="提交" class="form-control">
</div>
</div>
</form>
</div>
效果如下,非常符合正常表单的使用习惯了。
有时候我们希望表单的元素全部排列在一行上,也就是所谓的内联表单。
为<form>
标签设置.form-inline
类即可将表单设置为内联表单,代码如下:
<!-- 内联表单 -->
<div class="col-md-12">
<form action="#" class="form-inline">
<div class="form-group">
<label for="user-name">姓名</label>
<input type="text" id="user-name" class="form-control">
</div>
<div class="form-group">
<label for="user-age">年龄</label>
<input type="text" id="user-age" class="form-control">
</div>
<div class="form-group">
<label for="user-phone">手机号</label>
<input type="text" id="user-phone" class="form-control">
</div>
<div class="form-group">
<input type="submit" value="提交" class="form-control">
</div>
</form>
</div>
效果如下:
本篇介绍了Bootstrap表单常用的三种样式的实现方法,可以根据实际情况选用。
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://studyingpanda.blog.csdn.net/article/details/113887517
内容来源于网络,如有侵权,请联系作者删除!