6.4.5 改变大小写

6.4.5 改变大小写

Bootstrap提供了如下大小写相关的样式:

方法 描述
.text-lowercase 所有字母小写。
.text-uppercase 所有字母大写。
.text-capitalize 每个单词的首字母大写。

例如如下页面代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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">
</head>

<body>
<div class="container">
<p class="text-lowercase">bootStrap</p>
<p class="text-uppercase">bootStrap</p>
<p class="text-capitalize">bootStrap</p>
</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>