Bootstrap全局CSS样式之表单

.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>




转载于:https://www.cnblogs.com/yangykaifa/p/7001634.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/468436.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mysql索引使增删变慢_mysql优化(四)–索引

http://www.cnblogs.com/hustcat/archive/2009/10/28/1591648.html一、 四种索引类型&#xff1a;主键索引&#xff0c;唯一索引&#xff0c;全文索引&#xff0c;普通索引二、 为什么建立索引比较快一般的数据表是按照行来存储的&#xff0c;字段多、有长字段的表的记录就会长…

Linux 下的推迟执行

准备中秋节说个活动&#xff0c;评论文章点赞排名&#xff0c;用心评论哦&#xff0c;前5名获得每人 19 心意红包。感谢大家的支持我最近在用freertos&#xff0c;想让一个任务在某个时间后再执行&#xff0c;找了一圈&#xff0c;竟然没有这样才处理机制&#xff0c;因为也是新…

ASP.NET系统退出(移除Session 、清除浏览器缓存)

一、在退出时移除Session&#xff0c;首先在登录时要记录登录信息 Session["id"] user.id.ToString();Session["name"] user.name.ToString();Session["pwd"] user.password.ToString();Session["time"] user.LoginTime.ToString(…

js 获得明天0点时间戳_js实现一个简单钟表动画(javascript+html5 canvas)

自己学生时代的代码&#xff0c;发现还保存着&#xff0c;今天拿出来分享下。用js和html5 canvas对象实现一个简单钟表程序主要用到的就是h5的canvas对象canvas对象本人也不是很熟&#xff0c;大致看了几个常用的方法&#xff0c;难免有不足之处&#xff0c;仅是练习所用。实现…

mysql 根据当前时间戳_mysql timestamp类型 根据当前时间戳更新

注意到这个是因为一次事故。一个简单的操作记录表&#xff0c;只记录了一个操作人&#xff0c;操作时间&#xff0c;操作结果。当时为了演示效果&#xff0c;在生产环境中去修改&#xff0c;创建数据。一顿操作猛如虎之后发现&#xff0c;所有改过的数据的创建时间都变成了当前…

设置拖拽事件,获取拖拽内容

设置dragEnter 设置DragDrop using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using…

笔记本电脑锁_2020年双11有哪些值得选购的笔记本电脑?(全能本/便携高性能笔记本电脑/设计本)...

&#xff08;本文于2020年10月22日更新&#xff09;本文章会不定期更新&#xff0c;保证文章的时效性和准确性&#xff0c;可点赞或收藏本文章&#xff0c;这样在需要的时候可以找到啦。文章推荐产品较多&#xff0c;按价位排序&#xff0c;篇幅较长&#xff0c;可按键盘CtrlF快…

android libc 有哪些函数_Android scudo功能介绍

一 简述前面介绍了malloc_debug功能&#xff0c;用来进行内存泄露等检测&#xff0c;其实android可以使用多种方法进行内存相关的监控。比如利用llvm功能再编译时添加内存的相关检测。Android R默认开启了scudo。scudo这个选项主要功能是再分配内存时会添加64 bit的Header// Ou…

300来行代码实现最小Linux文件系统

Linux作为一个类UNIX系统&#xff0c;其文件系统保留了原始UNIX文件系统的表象形式&#xff0c;它看起来是这个样子&#xff1a;rootname-VirtualBox:/# lsbin boot cdrom dev etc home lib lib64 lostfound media mnt opt proc root run sbin snap srv sys …

淘宝怎么多个订单一起付款_淘宝未付款订单如何催付?

淘宝未付款订单如何催付&#xff1f;很多人只认为运营就是技巧&#xff0c;其实客服也是需要技巧的&#xff0c;客服也是关键的数据支撑。一个好的客服团队&#xff0c;能够很好地提高转化率、客单价、复购率&#xff0c;有效的降低退款率、纠纷等售后问题。今天和大家分享一下…

mysql存储过程触发器游标_MySQL存储过程,触发器,游标

语法&#xff1a;1.存储过程&#xff1a;create PROCEDURE name(argment_list)beginsql_statement;end2.触发器&#xff1a;create trigger name (before|after) (insert | update | delete) on table_namefor each rowbeginsql_statement;end3.游标:declare cursor_name curso…

爱大姚,恨男篮

先祝姚明生日快乐2019年9月12日。是中国篮协主席、CBA董事长姚明39岁的生日&#xff0c;时间已经过去几天了&#xff0c;当时铺天盖地的都是其他的热点新闻&#xff0c;很多人&#xff0c;包括我也忘记了这个大个子已经39岁了&#xff0c;看着中国男篮的惨败&#xff0c;很想冲…

Linux 内核系统架构

描述Linux内核的文章已经有上亿字了但是对于初学者&#xff0c;还是应该多学习多看&#xff0c;毕竟上亿字不能一下子就明白的。即使看了所有的Linux 内核文章&#xff0c;估计也还不是很明白&#xff0c;这时候&#xff0c;还是需要fucking the code.28年前(1991年8月26日)Lin…

gif透明背景动画_如何利用premiere制作GIF动态图片

GIF制作流程(也可以用此教程把视频变成GIF动图)作者&#xff1a;益红一、导出设计文件将要做动画的文件在ps里面导出 (透明图层用PNG)(也可以将合适的视频片段作为素材)二、在PR里面新建项目打开 Adobe premiere选择 新建项目找到新建项目 — 命名 —设置合适的项目 位置-点击浏…

mysql sqlserver分页_SqlServer、MySql万能分页代码

sql数据库中常用的分页 我做了一个万能的 用的上的小伙伴拿去耍吧go ----SqlServer万能分页代码create procedure [dbo].[sp_datapager]pagesize int,--每一页的大小pageindex int,--页码数tablename varchar(Max),--表的名称keycolumn varchar(20),---主键idcolumns varchar(…

并查集做题总结

CF 469B 构造出两个节点n1,n2来存放A集合和B集合中的数据&#xff0c;显然一个合理的分配不会使得一个元素既在A里面&#xff0c;也在B里面。而由于每一个元素都要去分配&#xff0c;如果a-x没有那它就得在B里面&#xff08;和n2合并&#xff09;&#xff0c;同理对于b-x没有的…

离职了

这是我毕业后的第一份工作...面试时&#xff0c;HR小姐姐告诉我...然鹅...我入职之后才发现&#xff1a;对标阿里的只有加班强度对标华为的只有狼性文化对标百度的&#xff0c;额&#xff0c;没有对标百度同事们有的住在海淀区、有的住在朝阳区&#xff0c;作为刚毕业的一枚“穷…

windows7官方原版_如何下载微软原版操作系统、办公软件

如何下载微软原版操作系统、办公软件&#xff1f;简介&#xff1a;微软操作系统从MS-DOS到Windows XP&#xff0c;Windows 7&#xff0c;Windows 8&#xff0c;再到现在的Windows 10 &#xff0c;一代比一代强&#xff0c;每代都有自己的特点。现在我们能从官网上下载到的只有W…

gojs 部分功能实现

最近做的项目用到了gojs&#xff0c;使用了一段时间发现其功能特别强大&#xff0c;先记录下目前自己用到的把 1. 初始化画布 myDiagram $(go.Diagram, "myDiagramDiv", {}); 2. 定义node 模型 myDiagram.nodeTemplate $(go.Node, "Vertical", { locati…

CPU是如何访问到内存的?

讨论的重点我们知道CPU有地址总线&#xff0c;数据总线和控制总线数据总线&#xff08;Data Bus&#xff09;&#xff1a;在CPU与RAM之间来回传送需要处理或是需要储存的数据。地址总线&#xff08;Address Bus&#xff09;&#xff1a;用来指定在RAM&#xff08;Random Access…