Bootstrap3-文字样式

Bootstrap将全局font-size设置为14px,line-height为1.428。这些属性直接赋给<body>和所有段落元素。另外,<p>(段落)还被设置了等于1/2行高的底部外边距(margin)(即10px)。

标题文字分为(h1-h6)
h1:36px
h2:30px
h3:24px
h4:18px
h5:14px
h6:12px
小号文本<small>:其内的文本将被设置为父容器字体大小的85%。

着重文本<strong>
斜体<em>
文本对齐方式(3种):
text-left左对齐
text-right右对齐
text-center居中对齐
文本颜色
<p class="text-muted">...</p>
<p class="text-primary">...</p>
<p class="text-success">...</p>
<p class="text-info">...</p>
<p class="text-warning">...</p>
<p class="text-danger">...</p>

原文地址:https://www.cnblogs.com/xiaotaiyang/p/3962368.html