您可以添加到您的main.css
、custom.css
或您制作的任何*.css
文件,或直接添加到文件顶部bootstrap.css
:
.text-justify {
text-align: justify;
}
如果您直接将其添加到bootstrap.css
文件中,从 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,
...
...
…