BootStrap 文本
(1)颜色
text-muted:浅灰色
text-primary:蓝色
text-success:浅绿
text-info:浅蓝色
text-warning:黄色
text-danger:褐色
(2)对齐
text-left:左对齐
text-center:居中对齐
text-right:右对齐
(3)形式
<small>85%父元素字体大小</small>
<strong>加粗</strong>
<em>斜体</em>
text-nowrap:不换行
<!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"> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <h1>一级标题父元素<small>85%父元素字体大小</small></h1> <strong>加粗</strong><br> <em>斜体</em><br> <p class="text-left">向左对齐文本</p> <p class="text-center">居中对齐文本</p> <p class="text-right">向右对齐文本</p> <p class="text-muted">本行内容是减弱的</p> <p class="text-primary">本行内容带有一个 primary class</p> <p class="text-success">本行内容带有一个 success class</p> <p class="text-info">本行内容带有一个 info class</p> <p class="text-warning">本行内容带有一个 warning class</p> <p class="text-danger">本行内容带有一个 danger class</p> <p class="text-nowrap">该段落不会根据屏幕的大小对超出屏幕的文字进行换行。</p> </body> </html>