博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Bootstrap文本排版基础--Bootsrap
阅读量:4919 次
发布时间:2019-06-11

本文共 2980 字,大约阅读时间需要 9 分钟。

1、排版前的基础

(1)移动设备优先

<meta name="viewport" content="width=device-width, initial-scale=1">

(2)响应式图片

CSS:img-responsive

demo.html:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <link href="css/bootstrap.min.css" type="text/css" rel="stylesheet">
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="col-sm-12">
        <img class="img-responsive" src="images/river.jpg" height="768" width="1366"/>
      </div>
    </div>
  </div>
</body>
</html>

Effect Picture:

 2、标题

CSS:class="h1"、"h2"、"h3"、"h4"、"h5"、"h6"

h1  36px margin-top:20px margin-bottom:10px;

h2  30px margin-top:20px margin-bottom:10px;

h3  24px margin-top:20px margin-bottom:10px;

h4  18px margin-top:10px margin-bottom:10px;

h5  14px margin-top:10px margin-bottom:10px; 

h6  12px margin-top:10px margin-bottom:10px;

demo.html:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <link href="css/bootstrap.min.css" type="text/css" rel="stylesheet">
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="col-sm-4">
        <img class="img-responsive" src="images/river.jpg" height="768" width="1366"/>
      </div>
      <div class="col-sm-8">
        <h1>第一个标题样式<small>小字体</small></h1><!--h标签里可以使用small标签,small标签文字大小在h1~3占h标签的65%,4~6占h75%-->
        <h2>第一个标题样式<small>小字体</small></h2>
        <h3>第一个标题样式<small>小字体</small></h3>
        <h4>第一个标题样式<small>小字体</small></h4>
        <h5>第一个标题样式<small>小字体</small></h5>
        <h6>第一个标题样式<small>小字体</small></h6>
        <p class="h1">第一个标题样<small>小字体</small>式<small>小字体</small></p>
        <p class="h2">第一个标题样式<small>小字体</small></p>
        <p class="h3">第一个标题样式<small>小字体</small></p>
        <p class="h4">第一个标题样式<small>小字体</small></p>
        <p class="h5">第一个标题样式<small>小字体</small></p>
        <p class="h6">第一个标题样式<small>小字体</small></p>
      </div>
    </div>
  </div>
</body>
</html>

Effect Picture:

3、页面主题

body全局样式:Background-color:white;font-size:14px margin:0; 行间距:20px

p全局样式:font-size:14px

强调<p>标签里的内容,可以给p标签里加类选择器class="lead"

Before:

After:

 

对齐方式:class="text-center"

 

4、强调文本

small、em、cite(引用网址)、b、strong相关

5、缩略语abbr

<abbr title="Bootstrap">Bootstrap</abbr>
<abbr title="Bootstrap" class="initialism">Bootstrap</abbr>

initialism类选择器定义的字母是原来的90%,并且会使小写字母转换为大写字母

6、地址元素address

.address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

<address>
  <strong>地址:</strong><br/>
  <a href="mailto:#">qikeyishu123@163.com</a>  
</address>

(7)引用 blockquote,引用里面最好设有p标签

<blockquote>
  <p>Bootsrap</p>
  <cite>来自<em>Bootstrap中文网</em></cite>
</blockquote>

<blockquote class="pull-right">
  <p>Bootsrap</p>
  <cite>来自<em>Bootstrap中文网</em></cite>
</blockquote>

                                                    

扩展:Botstrap使用第三方库Normalize.css,Normalize是一个专门用于将不同浏览器的默认css效果特征统一的css库

转载于:https://www.cnblogs.com/qikeyishu/p/7671161.html

你可能感兴趣的文章
书:《腾讯传》
查看>>
关于jquery中html()、text()、val()的区别
查看>>
设置html title标题左侧的小图标
查看>>
5、事务,索引
查看>>
如何从思维上应对
查看>>
《离散数学》-图论6.9
查看>>
高斯定理的证明
查看>>
Rails插件:CanCan权限验证插件学习总结
查看>>
硬盘坏道修复的方法
查看>>
Heap and Stack
查看>>
C#。总结
查看>>
修改服务器的3389端口
查看>>
greedy算法(python版)
查看>>
编码(4)
查看>>
How to Transfer Audio Output from Mac OS X to Ubuntu via a Network?
查看>>
Hibernate Annotation笔记
查看>>
spring学习-ApplicationContext-spring上下文深入理解
查看>>
日、周、月活跃用户数,用户流失率
查看>>
java学习-消息队列rabbitmq的组成
查看>>
hdu 4611 Balls Rearrangement
查看>>