search
HomeWeb Front-endJS TutorialBootstrap introductory book (1) Typesetting_javascript skills

Recommended reading: Bootstrap introductory book: (Zero) Introduction to Bootstrap

Bootstrap uses Helvetica Neue, Helvetica, Arial and sans-serif as its default font stack.

Using Bootstrap’s typography features, you can create headings, paragraphs, lists, and other inline elements.

1. Title

The way to use titles in Bootstrap is the same as in regular HTML: arrange the title elements from large to small from

to

, but the default style is reset in Bootstrap, which can be found in the source code We see the following commonalities:

The font color and font style are inherited from the parent element, the font weight is 500, and the line height is all set to 1.1 (that is, 1.1 times the font-size)

{ font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}

The differences between titles of different sizes are as follows:

In Bootstrap, the font sizes for different levels of titles are set to: h1=36px, h2=30px, h3=24px, h4=18px, h5=14px and h6=12px.

Reset the values ​​of margin-top and margin-bottom. The reset values ​​of h1~h3 are all 20px; the reset values ​​of h4~h6 are all 10px.

In addition, in order to use the same style for non-title elements and titles in Bootstrap, six class names .h1~.h6 are also specially defined. As shown below:

In Bootstrap, the following code displays the same effect.

<!--Bootstrap中的标题-->
<h1 id="Bootstrap标题一">Bootstrap标题一</h1>
<h2 id="Bootstrap标题二">Bootstrap标题二</h2>
<h3 id="Bootstrap标题三">Bootstrap标题三</h3>
<h4 id="Bootstrap标题四">Bootstrap标题四</h4>
<h5 id="Bootstrap标题五">Bootstrap标题五</h5>
<h6 id="Bootstrap标题六">Bootstrap标题六</h6>
<!--Bootstrap中让非标题元素和标题使用相同的样式-->
<div class="h1">Bootstrap标题一</div>
<div class="h2">Bootstrap标题二</div>
<div class="h3">Bootstrap标题三</div>
<div class="h4">Bootstrap标题四</div>
<div class="h5">Bootstrap标题五</div>
<div class="h6">Bootstrap标题六</div>

Because in practical applications, we may often encounter a situation where in addition to the main title, there is a subtitle immediately afterwards. Bootstrap humanistically sets up such an effect for us. The method of use is also very simple, as follows:

<h1 id="Bootstrap标题一-small-我是副标题-small">Bootstrap标题一<small>我是副标题</small></h1>

Of course, this setting will work from

to

. The subtitle has its own unique style:

The line heights are all set to 1, the font weight is changed to regular (not bold), and the color is set to gray ( #999 ).
The size of the tag text within h1~h3 is set to 65% of the current font size; while the font size within h4~h6 is set to 75% of the current font size;

2. Main text

The global text style in Bootstrap is as follows:

Font size is 14px
The line height is 1.42867143 (approximately equal to 20px)
The font color is #333
There is a bottom margin of 10 pixels outside the p tag margin-bottom:10px;
Of course, you can set the reset style yourself. ^_^

3. Emphasis

Font style related

<p class="lead">lead</p><!-- 字体变大,行高变大,下外边距变大 -->
<i>i</i><!--无特殊意义, 斜体 -->
<small>small</small><!-- 小号字体-->
<strong>strong</strong><!-- 语气强烈的强调,粗体 -->
<em>em</em><!-- 强调,斜体 -->

Emphasis on relevant classes

A series of such classes are defined in Bootstrap, which are used in different scenarios. In addition to text, there are also bg (background color) and so on. The usage is similar, except that the previous text has been changed! so. Remember these 6 words

<p class="text-muted">提示,使用浅灰色(#999)</p>
<p class="text-primary">主要,使用蓝色(#428bca)</p>
<p class="text-success">成功,使用浅绿色(#3c763d)</p>
<p class="text-info">通知信息,使用浅蓝色(#31708f)</p>
<p class="text-warning">警告,使用黄色(#8a6d3b)</p>
<p class="text-danger">危险,使用褐色(#a94442)</p>

4. Text alignment style

<p class="text-left">我居左</p>
<p class="text-center">我居中</p>
<p class="text-right">我居右</p>
<p class="text-justify">我两端对齐</p>

In Bootstrap, in order to simplify the operation and facilitate use, the above four classes are used to correspond to the text-align we often use in CSS to set the text alignment style.

5. List

The list settings in Bootstrap are basically the same as the native HTML. Things to note are:

Have 10px bottom margin between lists

In nested lists, there is no bottom margin

Of course Bootstrap will not just make a little modification, it defines some classes about lists for us to use.

Go to list .list-unstyled

.list-unstyled {
padding-left: 0;
list-style: none;
}

From the source code, we can see this information. In addition to removing the item number, it also clears the default left margin.

<ol>
<li class="list-unstyled">
项目列表
<ul class="list-unstyled">
<li>带有项目编号</li>
<li>带有项目编号</li>
</ul>
</li>
</ol>

In such a piece of code, the three list items will be neatly arranged together, and none of them have bullets

Inline list .list-inline

In addition to removing dotted lists, Bootstrap can also implement inline lists by adding the class name ".list-inline". To put it simply, it means changing the vertical list into a horizontal list, and removing the bullets (numbering), keeping Display horizontally. It can also be said that inline lists are born for making horizontal navigation.

Horizontal definition list .dl-horizontal

The existing code is as follows:

<dl class="dl-horizontal">
<dt>标题一:</dt>
<dd>描述内容,我很喜欢前端,也很喜欢响应式布局,它能在个不同大小的屏幕下提供很好的体验,我现在是初学者,但是我会越来强的</dd>
<dt>标题二:标题二:标题二:标题二:</dt>
<dd>描述内容</dd>
</dl>

在浏览器全屏显示中可以看到效果如下:

 

我们来把屏幕大小进行改变,在遇到一个临界值时(小屏),水平定义列表将回复到原始的状态,如下改变:

 

这是为什么呢?我们去看看源码吧!

原来在这里添加了一个媒体查询,只有 屏幕大于768px 的时候,添加类名 .dl-horizontal 才具有水平定义列表效果。其实现主要方式:

将dt设置了一个左浮动,并且设置了一个宽度为160px
将dd设置一个margin-left的值为180px,达到水平的效果
当标题宽度超过160px时,将会显示三个省略号
现在再看看上面的效果是不是和这里的描述都是一样的呢?答案当然是肯定的 ^ ^

6. 代码

在Bootstrap主要提供了三种代码风格:

使用 来显示单行内联代码——针对于 单个单词或单个句子 的代码
使用

 来显示多行块代码——针对于 多行代码 (也就是成块的代码)
使用 来显示用户输入代码——表示 用户要通过键盘输入的内容

直接来看效果吧!

 

代码如下:(需要注意的是,**不管使用哪种代码风格,在代码中碰到小于号( )都需要使用转义字符来替代)

code风格:

<div>Bootstrap的代码风格有三种:<code><code></code>、<code><pre class="brush:php;toolbar:false"></code>和<code><kbd></code></div>

pre风格:

<div>
<pre class="brush:php;toolbar:false">
<ul>
<li>...</li>
</ul>

kbd风格:

<div>请输入<kbd>ctrl+c</kbd>来复制代码,然后使用<kbd>ctrl+v</kbd>来粘贴代码</div>

 元素一般用于显示大块的代码,并保证原有格式不变。但有时候代码太多,而且不想让其占有太大的页面篇幅,就想控制代码块的大小。Bootstrap也考虑到这一点,你只需要在 pre标签 上添加类名 .pre-scrollable ,就可以控制代码块区域 最大高度为340px ,一旦超出这个高度,就会在 Y轴(纵向)出现滚动条。
<p>当然,你也可以进行自定义配置,例如:只需要在自定义的css中,对于该类添加一个 word-wrap: normal; ,这样的话,在代码块边框横向宽度小于内部代码横向长度时,就会出现横向滚动条。</p>
<p><span style="color: #0000ff"><strong>7. 表格</strong></span></p>
<p>表格是Bootstrap的一个基础组件之一,Bootstrap为表格提供了 1种基础样式 和 4种附加样式 以及 1个支持响应式的表格 。</p>
<p>对应上面所说的,Bootstrap为表格不同的样式风格提供了不同的类名,主要包括:</p>
<p>.table 基础表格<br>
.table-striped 斑马线表格<br>
.table-bordered 带边框的表格<br>
.table-hover 鼠标悬停高亮的表格<br>
.table-condensed 紧凑型表格<br>
.table-responsive 响应式表格</p>
<p>.table 主要有三个作用:</p>
<p>给表格设置了margin-bottom:20px以及设置单元内距<br>
在thead底部设置了一个2px的浅灰实线<br>
每个单元格顶部设置了一个1px的浅灰实线<br>
具体大家可以在源码中查看,后几种附加的样式在这里也不多说,但是下面说一些 注意事项:</p>
<p>后几种表格附加样式,必须在基础样式 .table 之后,例如 </p>

响应式表格:其原理是在表格 外部添加容器 把普通表格 包裹 起来,下面进行详细说明:
<div class="table-responsive"><!-- 关键!容器包裹后实现响应式 -->
<table class="table table-bordered"><!-- 设置表格样式,带边框的表格 -->
<thead><!-- 一个表格应该有表头,若直接写tr>td这样的结构,浏览器会自动创建一个tbody包裹 -->
</thead>
<tbody><!--与上同理,即使你不创建,浏览器也会自动添加tbody包裹你的代码 -->
</tbody>
</table>
</div>

The following is the widescreen effect (no different from an ordinary table):


Here is the effect of the narrow screen (you can see the appearance of the scroll bar):


Table row class, table scenario

As mentioned above, in Bootstrap, different colors are made for different scenarios and used to display different information. Just made some small changes in the class name. You can see it below:


Just add these classes to the

tag to use them.

In addition, you can see from the source code that in addition to these color settings, Bootstrap also separately sets the color deepening effect of the hover effect (suspended state) (it has separate color settings for different situations).

The implementation is also very simple. You only need to add a table-hover class to the

tag like
. (When the scene color is not set for , this class still has an effect, but the effect is different. As mentioned above, because of its separate setting, please check the source code for details)

Because of this, if you want to customize the color, in addition to modifying the color style of the tr element, you must also make corresponding adjustments in the .table-hover table!

The layout content ends here. I hope it will be helpful for everyone to learn Bootstrap layout related knowledge!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 Mobile Cheat Sheets for Mobile Development10 Mobile Cheat Sheets for Mobile DevelopmentMar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source ViewerImprove Your jQuery Knowledge with the Source ViewerMar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!