bootstrap-为水平排列的表单和内联表单设置可选的图标

说明

为水平排列的表单和内联表单设置可选的图标

示例

<!DOCTYPE html>
<html lang="zh-CN">
  	<head>
    	<meta charset="utf-8">
    	<meta http-equiv="X-UA-Compatible" content="IE=edge">
    	<meta name="viewport" content="width=device-width, initial-scale=1">
    	<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
    	<title>Bootstrap 101 Template</title>

    	<!-- Bootstrap -->
    	<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

    	<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    	<!-- WARNING: Respond.js doesn‘t work if you view the page via file:// -->
    	<!--[if lt IE 9]>
      		<script src="https://cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script>
      		<script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
    	<![endif]-->
  	</head>
  	<body>
	  	<div class="container">
	  		<form class="form-horizontal">
	  			<div class="form-group has-success has-feedback">
				    <label class="control-label col-sm-3" for="inputSuccess3">Input with success</label>
				    <div class="col-sm-9">
				      	<input type="text" class="form-control" id="inputSuccess3" aria-describedby="inputSuccess3Status">
				      	<span class="glyphicon glyphicon-ok form-control-feedback" aria-hidden="true"></span>
				      	<span id="inputSuccess3Status" class="sr-only">(success)</span>
				    </div>
				</div>

				<div class="form-group has-success has-feedback">
				    <label class="control-label col-sm-3" for="inputGroupSuccess2">Input group with success</label>
				    <div class="col-sm-9">
				      	<div class="input-group">
				        	<span class="input-group-addon">@</span>
				        	<input type="text" class="form-control" id="inputGroupSuccess2" aria-describedby="inputGroupSuccess2Status">
				      	</div>
				      	<span class="glyphicon glyphicon-ok form-control-feedback" aria-hidden="true"></span>
				      	<span id="inputGroupSuccess2Status" class="sr-only">(success)</span>
				    </div>
				</div>
	  		</form>
	    </div>

    	<!-- jQuery (necessary for Bootstrap‘s JavaScript plugins) -->
    	<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
    	<!-- Include all compiled plugins (below), or include individual files as needed -->
    	<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
  	</body>
</html>

输出

时间: 2024-10-12 08:36:33

bootstrap-为水平排列的表单和内联表单设置可选的图标的相关文章

吴裕雄 Bootstrap 前端框架开发——Bootstrap 表单:内联表单

<!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&q

Bootstrap 表单和图片 (内联表单,表单合组,水平排列,复选框和单选框,下拉列表,校验状态,添加额外的图标,控制尺寸,图片)

一.表单 基本格式 注:只有正确设置了输入框的 type 类型,才能被赋予正确的样式. 支持的输入框控件 包括:text.password.datetime.datetime-local.date.month.time.week. number.email.url.search.tel 和 color. <form> <div class="form-group"> <label>电子邮件</label> <input type=&

bootstrap 基础表单 内联表单 横向表单

<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="dist/css/bootstrap.css"> </head> <body> <p c

Bootstrap内联表单

有时候我们需要将表单的控件都在一行内显示,就需要将表单控件设置成内联块元素(display:inline-block). 在Bootstrap框架中实现这样的表单效果是轻而易举的,你只需要在<form>元素中添加类名“form-inline”即可. <form class="form-inline" role="form"> <div class="form-group"> <label class=&q

SqlSever基础 where inner join 内联表,两个表按照指定条件合作显示内容

镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code 1 --创建一个数据库 2 create database helloworld1 3 4 5 --用helloworld1这个数据库 6 use helloworld1 7 8 --创建一个表格teacher 9 create table Teacher 10 ( 11 Id in

Bootstrap中水平排列的表单form-inline

1 <html> 2 <head> 3 <title>初识Bootstrap</title> 4 <meta charset="utf-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <link rel="stylesheet" href=&

Bootstrap系列 -- 13. 内联表单

有时候我们需要将表单的控件都在一行内显示.在Bootstrap框架中实现这样的表单效果是轻而易举的,你只需要在<form>元素中添加类名“form-inline”即可 如果你要在input前面添加一个label标签时,会导致input换行显示.如果你必须添加这样的一个label标签,并且不想让input换行,你需要将label标签也放在容器“form-group”中 <form class="form-inline" role="form">

bootstrap: 内联表单;

<form class="form-inline"> <div class="form-group"> <label for="time">Time</label> <input type="text" class="form-control" placeholder="time"> </div> <div c

bootstrap-内联表单 水平(横向)表单 响应式图片 辅助类 [转]

<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <!--媒体查询--> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- 为了确保适当的绘制和触屏缩放,需要在 <head> 之中添加 viewp