Bootstrap3学习笔记(二)之排版


Posted in Javascript onMay 20, 2016

在上篇文章给大家介绍了BootStrap3学习笔记(一)之网格系统

对于标题,Bootstrap已经修改了h1--h6的样式,如果需要副标题,还可以在其中使用small标记

<h1>h1. Bootstrap heading <small>Secondary text</small></h1>
<h2>h2. Bootstrap heading <small>Secondary text</small></h2>
<h3>h3. Bootstrap heading <small>Secondary text</small></h3>
<h4>h4. Bootstrap heading <small>Secondary text</small></h4>
<h5>h5. Bootstrap heading <small>Secondary text</small></h5>
<h6>h6. Bootstrap heading <small>Secondary text</small></h6>

如果页面中有一个需要与众不同的h1,则可以将其包含在样式为“page-header的div中。

<div class="page-header">
<h1>Twitter Bootstrap <small>An intuitive front-end framework</small></h1>
</div>

Bootstrap默认字体大小为14px,行高1.428,段落间距10px,如果某个段落需要醒目一点,可是有'lead'类
使用text-*类,可以很方便的设定文本的水平对齐方式

<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
<p class="text-justify">Justified text.</p>
<p class="text-nowrap">No wrap text.</p>

HTML中的文字格式标记在Bootstrap中都可以使用

<p><b>This is bold text</b></p>
<p><big>This is big text</big></p>
<p><code>This is computer code</code></p>
<p><em>This is emphasized text</em></p>
<p><i>This is italic text</i></p>
<p><mark>This is highlighted text</mark></p>
<p><small>This is small text</small></p>
<p><strong>This is strongly emphasized text</strong></p>
<p>This is <sub>subscript</sub> and <sup>superscript</sup></p>
<p><ins>This text is inserted to the document</ins></p>
<p><del>This text is deleted from the document</del></p>

字母格式转换类可以很好的完成需要的转换:

<p class="text-lowercase">The quick brown fox jumps over the lazy dog.</p>
<p class="text-uppercase">The quick brown fox jumps over the lazy dog.</p>
<p class="text-capitalize">The quick brown fox jumps over the lazy dog.</p>

颜色是传递内容重要性的有力方式,Bootstrap提供了便利的设定文字强调级别的类:

<p class="text-muted">Muted: This text is grayed out.</p>
<p class="text-primary">Important: Please read the instructions carefully before proceed.</p>
<p class="text-success">Success: Your message has been sent successfully.</p>
<p class="text-info">Note: You must agree with the terms and conditions to complete the sign up process.</p>
<p class="text-warning">Warning: There was a problem with your network connection.</p>
<p class="text-danger">Error: An error has been occurred while submitting your data.</p>

对引用内容也做了修饰:

<blockquote class="pull-right">
<p>The world is a dangerous place to live; not because of the people who are evil, but because of the people who don't do anything about it.</p>
<small>by <cite>Albert Einstein</cite></small>
</blockquote>

其中的类是为了右对齐引用。

以上所述是小编给大家介绍的Bootstrap3学习笔记(二)之排版的相关知识,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Javascript 相关文章推荐
javascript父、子页面交互技巧总结
Aug 08 Javascript
JavaScript判断文件上传类型的方法
Sep 02 Javascript
Jquery树插件zTree用法入门教程
Feb 17 Javascript
整理JavaScript创建对象的八种方法
Nov 03 Javascript
jQuery实现选中弹出窗口选择框内容后赋值给文本框的方法
Nov 23 Javascript
深入理解JavaScript中Ajax
Aug 02 Javascript
微信小程序 slider 详解及实例代码
Jan 10 Javascript
js实现淡入淡出轮播切换功能
Jan 13 Javascript
利用纯JS实现像素逐渐显示的方法示例
Aug 14 Javascript
使用JS中的Replace()方法遇到的问题小结
Oct 20 Javascript
重学JS 系列:聊聊继承(推荐)
Apr 11 Javascript
解决vue初始化项目一直停在downloading template的问题
Nov 09 Javascript
js获取iframe中的window对象的实现方法
May 20 #Javascript
BootStrap3学习笔记(一)之网格系统
May 20 #Javascript
有关JavaScript中call()和apply() 的一些理解
May 20 #Javascript
Bootstrap表格和栅格分页实例详解
May 20 #Javascript
JavaScript 数组some()和filter()的用法及区别
May 20 #Javascript
JS数组操作(数组增加、删除、翻转、转字符串、取索引、截取(切片)slice、剪接splice、数组合并)
May 20 #Javascript
AngularJS中的指令全面解析(必看)
May 20 #Javascript
You might like
深入解析php中的foreach问题
2013/06/30 PHP
php加速器eAccelerator的配置参数、API详解
2014/05/05 PHP
PHP pthreads v3下同步处理synchronized用法示例
2020/02/21 PHP
基于jQuery的动态表格插件
2011/03/28 Javascript
js Select下拉列表框进行多选、移除、交换内容的具体实现方法
2013/08/13 Javascript
javascript页面上使用动态时间具体实现
2014/03/18 Javascript
JavaScript事件委托用法分析
2015/01/24 Javascript
Bootstrap每天必学之导航组件
2016/04/25 Javascript
全面解析Angular中$Apply()及$Digest()的区别
2016/08/04 Javascript
微信小程序-获得用户输入内容
2017/02/13 Javascript
将angular-ui的分页组件封装成指令的方法详解
2017/05/10 Javascript
JQuery EasyUI的一些常用组件
2017/07/12 jQuery
Vue.js简易安装和快速入门(第二课)
2017/10/17 Javascript
JQuery常见节点操作实例分析
2019/05/15 jQuery
JS中使用react-tooltip插件实现鼠标悬浮显示框
2019/05/15 Javascript
[02:27]2018DOTA2亚洲邀请赛赛前采访-OpTic
2018/04/03 DOTA
python绘图库Matplotlib的安装
2014/07/03 Python
python脚本实现数据导出excel格式的简单方法(推荐)
2016/12/30 Python
深入理解Python爬虫代理池服务
2018/02/28 Python
详解Python下ftp上传文件linux服务器
2018/06/21 Python
TensorFlow车牌识别完整版代码(含车牌数据集)
2019/08/05 Python
Python 实现文件读写、坐标寻址、查找替换功能
2019/09/11 Python
keras model.fit 解决validation_spilt=num 的问题
2020/06/19 Python
英国床垫和床架购物网站:Bedman
2019/11/04 全球购物
巴西网上药店:Drogaria Araujo
2021/01/06 全球购物
企业治理工作自我评价
2013/09/26 职场文书
小学教师自我鉴定
2013/11/07 职场文书
大一学生的职业生涯规划书范文
2014/01/19 职场文书
应届毕业生自荐信例文
2014/02/26 职场文书
土地转让协议书
2014/04/15 职场文书
办理信用卡收入证明范例
2014/09/13 职场文书
个人四风问题对照检查材料
2014/10/01 职场文书
2014年技术部工作总结
2014/12/12 职场文书
php修改word的实例方法
2021/11/17 PHP
分享提高 Python 代码的可读性的技巧
2022/03/03 Python
redis protocol通信协议及使用详解
2022/07/15 Redis