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 相关文章推荐
JS和jquery获取各种屏幕的宽度和高度的代码
Aug 02 Javascript
jquery实现checkbox 全选/全不选的通用写法
Feb 22 Javascript
解决node-webkit 不支持html5播放mp4视频的方法
Mar 11 Javascript
HTML5 JS压缩图片并获取图片BASE64编码上传
Nov 16 Javascript
underscore之Chaining_动力节点Java学院整理
Jul 10 Javascript
vue综合组件间的通信详解
Nov 06 Javascript
Vue resource三种请求格式和万能测试地址
Sep 26 Javascript
vue通过cookie获取用户登录信息的思路详解
Oct 30 Javascript
基于JavaScript实现每日签到打卡轨迹功能
Nov 29 Javascript
小程序数据通信方法大全(推荐)
Apr 15 Javascript
浅谈VUE中演示v-for为什么要加key
Jan 16 Javascript
通过实例解析javascript Date对象属性及方法
Nov 04 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基于phpqrcode生成带LOGO图像的二维码实例
2015/07/10 PHP
Zend Studio使用技巧两则
2016/04/01 PHP
php使用Header函数,PHP_AUTH_PW和PHP_AUTH_USER做用户验证
2016/05/04 PHP
php实现的网页版剪刀石头布游戏示例
2016/11/25 PHP
PHP使用imagick扩展实现合并图像的方法
2017/04/25 PHP
PHP PDOStatement::nextRowset讲解
2019/02/01 PHP
js预载入和JavaScript Image()对象使用介绍
2011/08/28 Javascript
javascript常见数据验证插件大全
2015/08/03 Javascript
smartcrop.js智能图片裁剪库
2015/10/14 Javascript
JS实现队列与堆栈的方法
2016/04/21 Javascript
JS未跨域操作iframe里的DOM
2016/06/01 Javascript
解析微信JS-SDK配置授权,实现分享接口
2016/12/09 Javascript
详谈javascript精度问题与调整
2017/07/08 Javascript
解决nodejs的npm命令无反应的问题
2018/05/17 NodeJs
20个最常见的jQuery面试问题及答案
2018/05/23 jQuery
深入理解Vue父子组件生命周期执行顺序及钩子函数
2018/08/12 Javascript
详解angular2如何手动点击特定元素上的点击事件
2018/10/16 Javascript
详解基于mpvue微信小程序下载远程图片到本地解决思路
2019/05/16 Javascript
node.js如何操作MySQL数据库
2020/10/29 Javascript
[02:49:21]2019完美盛典全程录像
2019/12/08 DOTA
详细解读Python中解析XML数据的方法
2015/10/15 Python
python如何实现远程控制电脑(结合微信)
2015/12/21 Python
python遍历 truple list dictionary的几种方法总结
2016/09/11 Python
Python探索之URL Dispatcher实例详解
2017/10/28 Python
Python3中内置类型bytes和str用法及byte和string之间各种编码转换 问题
2018/09/27 Python
将Pytorch模型从CPU转换成GPU的实现方法
2019/08/19 Python
用python3读取python2的pickle数据方式
2019/12/25 Python
python如何通过pyqt5实现进度条
2020/01/20 Python
详解CSS3中强大的filter(滤镜)属性
2017/06/29 HTML / CSS
IMPORT的选项IGNORE有什么作用?缺省是什么设置?
2015/09/17 面试题
学生党员的自我评价范文
2014/03/01 职场文书
小学先进集体事迹材料
2014/05/31 职场文书
信息与工商管理职业规划范文:为梦想而搏击
2014/09/11 职场文书
2015年新教师工作总结
2015/04/28 职场文书
创业计划书介绍
2019/04/24 职场文书
高效笔记技巧分享:学会这些让你不再困扰
2019/09/04 职场文书