Bootstrap按钮群组

button-group-finish.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>按钮-按钮群组</title>
<link href="../bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
      <script src="../bootstrap/js/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
	<h1 class="page-header">按钮 <small>按钮群组</small></h1>
	<div class="btn-toolbar">
		<div class="btn-group">
			<button class="btn">右对齐</button>
			<button class="btn">居中</button>
			<button class="btn">左对齐</button>
		</div>
		
		<div class="btn-group">
			<button class="btn">粗体</button>
			<button class="btn">斜体</button>
			<button class="btn">下划线</button>
		</div>
	</div>
	
</div>

<script src="../bootstrap/js/jquery-1.7.2.min.js"></script> 
<script src="../bootstrap/js/bootstrap.js"></script>
</body>
</html>

猜你喜欢

转载自beckham-xiao.iteye.com/blog/2397881