Bootstrap3学习笔记(二)之排版
在上篇文章给大家介绍了
对于标题,Bootstrap已经修改了h1--h6的样式,如果需要副标题,还可以在其中使用small标记
<h1>h1.Bootstrapheading<small>Secondarytext</small></h1> <h2>h2.Bootstrapheading<small>Secondarytext</small></h2> <h3>h3.Bootstrapheading<small>Secondarytext</small></h3> <h4>h4.Bootstrapheading<small>Secondarytext</small></h4> <h5>h5.Bootstrapheading<small>Secondarytext</small></h5> <h6>h6.Bootstrapheading<small>Secondarytext</small></h6>
如果页面中有一个需要与众不同的h1,则可以将其包含在样式为“page-header的div中。
<divclass="page-header"> <h1>TwitterBootstrap<small>Anintuitivefront-endframework</small></h1> </div>
Bootstrap默认字体大小为14px,行高1.428,段落间距10px,如果某个段落需要醒目一点,可是有'lead'类
使用text-*类,可以很方便的设定文本的水平对齐方式
<pclass="text-left">Leftalignedtext.</p> <pclass="text-center">Centeralignedtext.</p> <pclass="text-right">Rightalignedtext.</p> <pclass="text-justify">Justifiedtext.</p> <pclass="text-nowrap">Nowraptext.</p>
HTML中的文字格式标记在Bootstrap中都可以使用
<p><b>Thisisboldtext</b></p> <p><big>Thisisbigtext</big></p> <p><code>Thisiscomputercode</code></p> <p><em>Thisisemphasizedtext</em></p> <p><i>Thisisitalictext</i></p> <p><mark>Thisishighlightedtext</mark></p> <p><small>Thisissmalltext</small></p> <p><strong>Thisisstronglyemphasizedtext</strong></p> <p>Thisis<sub>subscript</sub>and<sup>superscript</sup></p> <p><ins>Thistextisinsertedtothedocument</ins></p> <p><del>Thistextisdeletedfromthedocument</del></p>
字母格式转换类可以很好的完成需要的转换:
<pclass="text-lowercase">Thequickbrownfoxjumpsoverthelazydog.</p> <pclass="text-uppercase">Thequickbrownfoxjumpsoverthelazydog.</p> <pclass="text-capitalize">Thequickbrownfoxjumpsoverthelazydog.</p>
颜色是传递内容重要性的有力方式,Bootstrap提供了便利的设定文字强调级别的类:
<pclass="text-muted">Muted:Thistextisgrayedout.</p> <pclass="text-primary">Important:Pleasereadtheinstructionscarefullybeforeproceed.</p> <pclass="text-success">Success:Yourmessagehasbeensentsuccessfully.</p> <pclass="text-info">Note:Youmustagreewiththetermsandconditionstocompletethesignupprocess.</p> <pclass="text-warning">Warning:Therewasaproblemwithyournetworkconnection.</p> <pclass="text-danger">Error:Anerrorhasbeenoccurredwhilesubmittingyourdata.</p>
对引用内容也做了修饰:
<blockquoteclass="pull-right"> <p>Theworldisadangerousplacetolive;notbecauseofthepeoplewhoareevil,butbecauseofthepeoplewhodon'tdoanythingaboutit.</p> <small>by<cite>AlbertEinstein</cite></small> </blockquote>
其中的类是为了右对齐引用。
以上所述是小编给大家介绍的Bootstrap3学习笔记(二)之排版的相关知识,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!