是否有可能在引导框架内certificate文本?
这可能是一个愚蠢的问题,但我确定我不是唯一想知道的人。
我知道alignment类: <p class="text-center">Text Centered within the block element</p>
<p class="text-right">Text aligned to the right within the block element</p>
<p class="text-center">Text Centered within the block element</p>
<p class="text-left">Text aligned to the left within the block element</p>
<p class="text-right">Text aligned to the right within the block element</p>
<p class="text-left">Text aligned to the left within the block element</p>
Twitters Bootstrap框架中是否有一组类用于validation文本?
例如<p class="text-justify">Sample Text Goes Here</p>
为什么看起来bootstrap不包含一个效用函数,例如text-align: justify
?
但是,您可以在bootstrap.css中添加一个新类
.text-justify { text-align: justify; }
更新
以前的引导版本不支持text-justify
。 但bootstrap 3添加了一个类text-justify
。
在Bootstrap 3中,你可以使用这个:
<p class="text-justify">Justified text.</p>
您可以添加到您的main.css
, custom.css
文件或您已经创build的*.css
文件,或直接添加到bootstrap.css
文件的顶部:
.text-justify { text-align: justify; }
如果你直接在bootstrap.css
文件中join这个文件,从v3.0.0开始,它会从这里开始:
/*! * Bootstrap v3.0.0 * * Copyright 2013 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world by @mdo and @fat. */ /*! normalize.css v2.1.0 | MIT License | git.io/normalize */ article, aside, details, ... ... …
至
/*! * Bootstrap v3.0.0 * * Copyright 2013 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world by @mdo and @fat. */ /*! normalize.css v2.1.0 | MIT License | git.io/normalize */ .text-justify { text-align: justify; } article, aside, details, ... ... …