### Marked text
For highlighting a run of text due to its relevance in another context, use the `<mark>` tag.
You can use the mark tag to highlight text.
~~~html
You can use the mark tag to <mark>highlight</mark> text.
~~~
### [](https://v3.bootcss.com/css/#被删除的文本)被删除的文本
对于被删除的文本使用 `<del>` 标签。
~his line of text is meant to be treated as deleted text.~
~~~html
<del>This line of text is meant to be treated as deleted text.</del>
~~~
### [](https://v3.bootcss.com/css/#无用文本)无用文本
对于没用的文本使用 `<s>` 标签。
~his line of text is meant to be treated as no longer accurate.~
~~~html
<s>This line of text is meant to be treated as no longer accurate.</s>
~~~
### [](https://v3.bootcss.com/css/#插入文本)插入文本
额外插入的文本使用 `<ins>` 标签。
This line of text is meant to be treated as an addition to the document.
~~~html
<ins>This line of text is meant to be treated as an addition to the document.</ins>
~~~
### [](https://v3.bootcss.com/css/#带下划线的文本)带下划线的文本
为文本添加下划线,使用 `<u>` 标签。
This line of text will render as underlined
~~~html
<u>This line of text will render as underlined</u>
~~~
利用 HTML 自带的表示强调意味的标签来为文本增添少量样式。
### [](https://v3.bootcss.com/css/#小号文本)小号文本
对于不需要强调的inline或block类型的文本,使用 `<small>` 标签包裹,其内的文本将被设置为父容器字体大小的 85%。标题元素中嵌套的 `<small>` 元素被设置不同的 `font-size` 。
你还可以为行内元素赋予 `.small` 类以代替任何 `<small>` 元素。
This line of text is meant to be treated as fine print.
~~~html
<small>This line of text is meant to be treated as fine print.</small>
~~~
### [](https://v3.bootcss.com/css/#着重)着重
通过增加 font-weight 值强调一段文本。
The following snippet of text is **rendered as bold text**.
~~~html
<strong>rendered as bold text</strong>
~~~
### [](https://v3.bootcss.com/css/#斜体)斜体
用斜体强调一段文本。
The following snippet of text is *rendered as italicized text*.
~~~html
<em>rendered as italicized text</em>
~~~
#### Alternate elements
在 HTML5 中可以放心使用 `<b>` 和 `<i>` 标签。`<b>` 用于高亮单词或短语,不带有任何着重的意味;而 `<i>` 标签主要用于发言、技术词汇等。
- 概览
- 移动设备优先
- 排版与链接
- 布局容器
- 栅格系统
- 简介
- 媒体查询
- 栅格参数
- 实例:从堆叠到水平排列
- 实例:流式布局容器
- 实例:移动设备和桌面屏幕
- 实例:手机、平板、桌面
- 实例:多余的列(column)将另起一行排列
- 响应式列重置
- 列偏移
- 嵌套列
- 列排序
- Less mixin 和变量
- 排版
- 标题
- 页面主体
- 内联文本元素
- 对齐
- 改变大小写
- 缩略语
- 地址
- 引用
- 列表
- 代码
- 表格
- 基本表格
- 状态类
- 响应式表格
- 表单
- 基本表单
- 内联表单
- 水平排列的表单
- 被支持的控件
- 多选和单选框
- 下拉列表
- 静态控件
- 焦点、禁用、只读、校验状态
- 添加额外的图标
- 控件尺寸
- 按钮
- 图片
- 响应式图片
- 图片形状
- 辅助类
- 关闭按钮和三角符号
- 快速浮动
- 让内容块居中
- 清除浮动
- 显示或隐藏内容
- 屏幕阅读器和键盘导航
- 图片替换