7.4.2 控制输入框组的大小

7.4.2 控制输入框组的大小

Bootstrap为控制输入框组的大小提供了如下样式。

样式 描述
.input-group-lg 大的输入框组
.input-group-sm 小的输入框组
直接将上面样式应用于输入框组的容器元素(指定了.input-group样式的<div>元素)上,则整个输入框组内所有元素的大小都会随之改变。

程序示例

下面代码示范了如何控制输入框组的大小。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> 输入框组 </title>
<link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="../bootstrap/css/bootstrap-theme.min.css">
<style type="text/css">
.container>div {
margin-bottom: 10px;
}
</style>
</head>

<body>
<div class="container">
<!-- 大的输入框组 -->
<div class="input-group input-group-lg">
<!-- .form-control样式应用于表单控件 -->
<input type="text" class="form-control" id="price-lg" placeholder="填写您获得的验证码">
<!-- .input-group-btn样式应用于输入框组的附加按钮 -->
<span class="input-group-btn">
<button class="btn btn-info" type="button">发送验证码</button>
</span>
</div>
<!-- 普通的输入框组 -->
<div class="input-group">
<!-- .form-control样式应用于表单控件 -->
<input type="text" class="form-control" id="price" placeholder="填写您获得的验证码">
<!-- .input-group-btn样式应用于输入框组的附加按钮 -->
<span class="input-group-btn">
<button class="btn btn-info" type="button">发送验证码</button>
</span>
</div>
<!-- 小的输入框组 -->
<div class="input-group input-group-sm">
<!-- .form-control样式应用于表单控件 -->
<input type="text" class="form-control" id="price-sm" placeholder="填写您获得的验证码">
<!-- .input-group-btn样式应用于输入框组的附加按钮 -->
<span class="input-group-btn">
<button class="btn btn-info" type="button">发送验证码</button>
</span>
</div>
</div>
<script type="text/javascript" src="../jquery-3.1.1.js"></script>
<script type="text/javascript" src="../bootstrap/js/bootstrap.min.js"></script>
</body>

</html>