6.4.2 段落
Bootstrap
为<body>
元素设置了font-size
为14px,line-height
为1.428。此外,Bootstrap
还为所有<p>
元素设置了margin-bottom=10px
。
如果希望让某个段落突出显示,可使用Bootstrap
提供的.lead
样式。
下面代码示范了段落相关样式的效果。
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 name="author" content="Yeeku.H.Lee(CrazyIt.org)" /> <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>静夜思 作者:李白床前明月光,疑是地上霜。举头望明月,低头思故乡。</p> <p class="lead">静夜思 作者:李白床前明月光,疑是地上霜。举头望明月,低头思故乡。</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>
|
原文链接: 6.4.2 段落