.form-control——将单独的表单控件赋予一些全局样式,如默认宽度width:100%。

.form-group——包裹表单控件,获得最好的排列;

.form-inline——将表单设置为内联表单,仅仅适用于视口(viewport)至少在 768px 宽度时;

.sr-only——将label标签隐藏;

.help-block——用于设置提示文本;

.form-horizontal——能够将label标签和控件组水平并排布局;

.radio-inline、.checkbox-inline——将对应控件水平排列。

.form-control-static——将p元素设置为静态控件。

.has-error、.has-warning、has-success——分别相应校验状态。

.has-feedback——为控件加入辅助图标(与图标引用类联合使用);

.input-lg——创建大一些的表单控件。

.input-sm——创建小一些的表单控件;

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>CSS全局样式_栅格系统</title>
<!--
<link rel="stylesheet" href="bootstrap.min.css" type="text/css">
-->
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
<style type="text/css"> </style>
</head>
<body>
<div class="container">
<form role="form" class="form-inline">
<div class="form-group">
<label class="sr-only">username</label>
<input type="text" class="form-control" placeholder="username/邮箱/手机号"/>
</div>
<div class="form-group">
<label class="sr-only">password</label>
<input type="password" class="form-control" placeholder="输入6-14位英文和数字组合password"/>
</div>
<div class="form-group">
<label class="sr-only">生日</label>
<input type="date" class="form-control" placeholder="出生年月"/>
</div>
<div class="form-group">
<label class="sr-only">上传头像</label>
<input type="file" class="form-control input-lg"/>
<p class="help-block">选择您须要的头像文件</p>
</div>
</form>
<form role="form" class="form-horizontal">
<div class="form-group">
<label class="col-sm-4 control-label">username</label>
<div class="col-sm-8">
<input type="text" class="form-control" placeholder="username/邮箱/手机号"/>
</div> </div>
<div class="form-group">
<label class="col-sm-4 control-label">password</label>
<div class="col-sm-8">
<input type="password" class="form-control" placeholder="输入6-14位英文和数字组合password"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-4 control-label">生日</label>
<div class="col-sm-8">
<input type="date" class="form-control" placeholder="出生年月"/>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-4 col-sm-8">
<div class="checkbox">
<label>
<input type="checkbox"/>记住password
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-4 col-sm-8">
<button class="btn btn-default">登录</button>
</div>
</div>
</form>
<form role="form" class="form-horizontal">
<div class="form-group">
<label>喜欢的球队</label>
<div class="checkbox">
<label>
<input type="checkbox"/>广州恒大
</label>
<label>
<input type="checkbox"/>上海上港
</label>
<label>
<input type="checkbox"/>北京国安
</label>
</div>
</div>
<div class="form-group">
<label>性别</label>
<div class="radio">
<label>
<input type="radio" checked name="gender"/>男
</label>
<label>
<input type="radio" name="gender"/>女
</label>
</div>
</div>
<div class="form-group">
<label>所属城市</label>
<select class="form-control" multiple>
<option>北京</option>
<option>上海</option>
<option>广州</option>
</select>
</div>
<div class="form-group">
<label class="sr-only"></label>
<textarea class="form-control" rows="5" placeholder="请文明用语"></textarea>
</div>
<p class="form-control-static">请依照邮箱格式输入:hello@163.com</p>
<div class="form-group">
<label>password</label>
<input class="form-control" type="password" disabled/>
</div>
<div class="form-group">
<label>昵称</label>
<input class="form-control" type="text" placeholder="胖虎" readonly/>
</div>
<div class="form-group has-error has-feedback">
<label>username</label>
<input class="form-control" type="text" />
<span class="glyphicon glyphicon-remove form-control-feedback"></span>
</div>
<div class="form-group has-success has-feedback">
<label>username</label>
<input class="form-control" type="text" />
<span class="glyphicon glyphicon-ok form-control-feedback"></span>
</div>
<div class="form-group has-warning has-feedback">
<label>username</label>
<input class="form-control" type="text" />
<span class="glyphicon glyphicon-warning-sign form-control-feedback"></span>
</div>
</form>
</div> </body>
</html>

Bootstrap全局CSS样式之表单的更多相关文章

  1. bootstrap全局CSS样式学习

    参考http://v3.bootcss.com/css/,根据自己的记忆进行的复述,加深记忆. 首先介绍bootstrap全局CSS样式 只通过使用bootstrap.css,即可获得统一的样式设置. ...

  2. 响应式布局和BootStrap 全局CSS样式

    1.什么是响应式布局 响应式布局是Ethan Marcotte在2010年5月份提出的一个概念,这个概念是为解决移动互联网浏览而诞生的. 简而言之,就是一个网站能够兼容多个终端——而不是为每个终端做一 ...

  3. 14、响应式布局和BootStrap 全局CSS样式知识点总结-part1

    1.什么是响应式布局 响应式布局是Ethan Marcotte在2010年5月份提出的一个概念,这个概念是为解决移动互联网浏览而诞生的. 简而言之,就是一个网站能够兼容多个终端——而不是为每个终端做一 ...

  4. bootstrap 全局 CSS 样式

    http://v3.bootcss.com/css/#less-mixins-utility 深入了解 Bootstrap 底层结构的关键部分,包括我们让 web 开发变得更好.更快.更强壮的最佳实践 ...

  5. Bootstrap--全局css样式之表单

    单独的表单控件会被自动赋予一些全局样式.所有设置了 .form-control 类的 <input>.<textarea> 和 <select> 元素都将被默认设置 ...

  6. bootstrap全局css样式

    以下从官网抄来的,感觉还是很实用的,运用得好,灵活运用,非常方便快捷,能大大提高开发效率,也为调整不同尺寸的屏幕节省了时间. hidden-xs @media (max-width: 767px){ ...

  7. 15、响应式布局和BootStrap 全局CSS样式知识点总结-part2

    1.表格 <div class="container"> <table class="table "> <thead> &l ...

  8. Bootstrap - 全局css样式类

    状态类 通过这些状态类可以为行或单元格设置颜色. .active 鼠标悬停在行或单元格上时所设置的颜色 .success 标识成功或积极的动作 .info 标识普通的提示信息或动作 .warning ...

  9. Bootstrap全局CSS样式之排版

    Bootstrap能全然友好的支持html5的文本元素,这里不再赘述,详细可參考我还有一篇文章<html的文本元素总结>,这里主要针对Bootstrap封装好的CSS文本样式做一下汇总. ...

随机推荐

  1. Android中XML解析,保存的三种方法

    简单介绍 在Android开发中,关于XML解析有三种方式,各自是: SAX 基于事件的解析器.解析速度快.占用内存少.非常适合在Android移动设备中使用. DOM 在内存中以树形结构存放,因此检 ...

  2. Android——隐藏输入法的小技巧

    今天偶然在百度地图提供的DEMO里看到这样一段代码.认为确实是个小技巧,就写下来分享一下. 针对的问题: 我们在开发android界面的时候,常常使用EditText控件.然后每次进入这个页面的时候, ...

  3. VMware虚拟机无法识别U盘解决方式

    1. 本机情况: Winxp操作系统(相同应该适用于win7),VMware虚拟机.虚拟机版本号:VMware 10.安装Ubuntu14.04.现要求在主机上插入U盘.在虚拟机中显示. 2. 遇到问 ...

  4. POJ 2299 离散化线段树

    点击打开链接 Ultra-QuickSort Time Limit: 7000MS   Memory Limit: 65536K Total Submissions: 40827   Accepted ...

  5. 利用flashback transaction query新特性进行事务撤销

    具备了flashback version query查询的基础,我们就可以进行基于flashback version query的恢复.这就是flashback transaction query.f ...

  6. UIimageView和UIimage的小区别

    UIimageView 用来显示一张图片或者显示一组动画图片 UIimage        不是一个控件,只是一个普通的类,用来生成一张图片,只单纯的生成一张图片,图片只会被加载到内存,如果想要让用户 ...

  7. 洛谷P3381 【模板】最小费用最大流(dijstra费用流)

    题目描述 如题,给出一个网络图,以及其源点和汇点,每条边已知其最大流量和单位流量费用,求出其网络最大流和在最大流情况下的最小费用. 输入输出格式 输入格式: 第一行包含四个正整数N.M.S.T,分别表 ...

  8. Zxing实现在线二维码生成程序

    关于zxing的使用请参考笔者的另外一篇博文:Java二维码生成与解码工具Zxing使用 首先我们来看看效果: 在文本框中输入内容后点击生成二维码按钮,应用自动对文本框中的内容进行编码,生成二维码图片 ...

  9. Android使用Dribble Api

    使用Dribble提供的Api获取上面的设计分享 使用了Material Design.SceneTransitionAnimation 使用了Volley Gson 1. 申请Dribble开发者应 ...

  10. 『转』How to Think About Your Career

    开始工作的伊始,逐渐转载及阅读Medium上知名华裔设计师Julie Zhuo的文章,这是她在medium上的介绍:Product design VP @ Facebook. Lover of foo ...