Home > Article > Web Front-end > Comprehensive analysis of how to use Bootstrap layout (text style)_javascript skills
1. Paragraph
Paragraph is another important element in typography. Set a global text style for text in Bootstrap (the text here refers to the body text):
1. The global text font size is 14px (font-size).
2. The line height is 1.42857143 (line-height), which is about 20px (you may be confused when you see a series of decimals. In fact, it is calculated through the LESS compiler. Of course, Sass also has such a function).
3. The color is dark gray (#333);
2. Text style
In actual projects, for some important texts, the parts that you want to highlight will be processed in different styles. Bootstrap also does some lightweight processing of this part.
If you want a paragraph p to be highlighted, you can do so by adding the class name ".lead". Its function is to increase the text font size, bold the text, and also process the line height and margin accordingly.
1. Bold: In Bootstrap, you can use the a4b561c25d9afb9ac8dc4d70affff419 and 8e99a69fbe029cd4e2b854e244eab143 tags to make text bold directly.
2. Italics: In Bootstrap, you can use 907fae80ddef53131f3292ee4f81644b or 5a8028ccc7a7e27417bff9f05adf5932 to achieve text italics.
3. Emphasis category
.text-muted: Hint, use light gray (#999)
.text-primary: Primary, use blue (#428bca)
.text-success: Success, use light green (#3c763d)
.text-info: Notification information, use light blue (#31708f)
.text-warning: Warning, use yellow (#8a6d3b)
.text-danger: Danger, use brown (#a94442)
<div class="text-muted">.text-muted 效果</div> <div class="text-primary">.text-primary效果</div> <div class="text-success">.text-success效果</div> <div class="text-info">.text-info效果</div> <div class="text-warning">.text-warning效果</div> <div class="text-danger">.text-danger效果</div>
The effect is as follows:
4. Text alignment
Text alignment is indispensable in typesetting. Text-align is often used in CSS to set the alignment style of text. There are four main styles:
☑ Left aligned, takes the value left
☑ Align in the center, takes the value center
☑ Align right, takes the value right
☑ Align both ends, takes the value justify
In order to simplify the operation and facilitate use, Bootstrap defines four class names through to control the alignment style of the text:
☑ .text-left:Align left
☑ .text-center:center-aligned
☑ .text-right: right aligned
☑ .text-justify:Align both ends
With text styles, the layout effect is clearer and more concise. I hope you can use more simple and generous text styles in your works to make your works stand out and be more attractive.