1. background (background-color, background-image)  背景色覆盖范围: border+ width+ padding ;背景图覆盖范围: width + padding ;

背景颜色: 起点 是 border的外边缘

http://www.w3cplus.com/content/css-background-origin

背景图片:定位的起点是 padding的外边缘处:

这是因为: background-origin 指定背景图像的定位区域   默认是 padding-box;

1) background-color:

包括的范围: border + padding + width:

注意的就是: 如果 border不是透明的话 ,border的颜色 会覆盖 住 background-color: 造成一种假象(范围是 padding + width);

当这是错误的.  如果 将border 设置为 透明 ,就会清楚的看到  background-color 的范围是  border + padding + width:

 <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>background-color: 定位的起点是 border的外边缘</title>
<style type="text/css">
.box {
width: 200px;
height: 200px;
border: 50px solid transparent; background-color: red; /*background-image: url(img/2.png);
background-size: 100px 100px;
background-repeat: no-repeat;*/ padding: 50px;
}
</style>
</head>
<body> <div class="box">
1111
</div>
</body>
</html>

width: 200px  ;  padding: 50px;  border: 50px  并且透明:

因为: 背景色 是从 border外边缘开始 : 所以是   200(width) + 2*50(padding) + 2*50(border)

显示

如果 border 不设置为透明:

----------

如果border 不设置为 solid ,看得更清楚一点.

-------------------------------------

2) background-image

覆盖的范围 是 width + padding

 <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>background-image: 定位的起点默认是是padding的外边缘, 可以通过background-origin修改</title>
<style type="text/css">
.box {
width: 200px;
height: 200px;
border: 50px solid transparent; background-color: red; background-image: url(img/2.png);
background-size: 100px 100px;
background-repeat: no-repeat; padding: 50px;
}
</style>
</head>
<body> <div class="box">
1111
</div>
</body>
</html>

显示:

 

参考链接:    菜鸟教程:

2. 设置多个背景图像

参见 1 -> 2) 中.  有两个背景图片 . 一个是纹理 x 和 y 都铺满了. 定位在 左上角(默认位置)  ; 一个是花朵 ,没有平铺,  并且定位在右下角.

3.background-position 定位的时候 ,百分比的意思.

background-image: 30%  40%;

如果容器的 宽和高是  500px,  背景的宽和高是 100px;

------

错误:  容器宽 * 百分比 ;  容器 高 * 百分比:

  背景 左上角 定位: 距离 x 轴是500 * 30% = 150px , 距离 y轴 是 500 * 40% =  200px;

------

正确:  (容器宽 - 背景宽) * 百分比;   (容器高 - 背景高) * 百分比:

  注意: 容器宽 = width + padding  ;   容器高 = height + padding

  背景左上角定位: 距离 x 轴 是  (500 - 100) * 30% = 120px;  距离 y 轴 是 (500 - 100) * 40% = 160px;

---------------------

这是因为:

如果我们设置 background-origin : content-box 时 ,  容器 宽度 就是 width . 容器 高度 就是 height;

------------------

 <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>background-position百分比表示的意思:</title>
<style type="text/css">
.box {
width: 500px;
height: 500px;
border: 1px solid black; background-image: url(img/2.png);
background-size: 100px 100px;
background-repeat: no-repeat; background-position: 30% 40%;
}
</style>
</head>
<body> <div class="box"> </div>
</body>
</html>

显示:

----------------------

注意: 如果设置 padding为 100px  , 因为width是 500 * 500 , 那么此时 容器 是  700 * 700 ;

此时: 距离左上角: x 轴 (500 + 2X 100 - 100) * 30% = 180px;  距离 y 轴: (700 - 100 ) * 40% = 240px;

 <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>background-position百分比表示的意思: + padding</title>
<style type="text/css">
.box {
width: 500px;
height: 500px;
border: 1px solid black; background-image: url(img/2.png);
background-size: 100px 100px;
background-repeat: no-repeat; background-position: 30% 40%;
padding: 100px;
}
</style>
</head>
<body> <div class="box"> </div>
</body>
</html>

显示:

------------

 参考链接:

    你真的了解background-position

4) background-clip 和 background-origin 的区别:

第一:  background-origin 是针对 background-image , 规定 background-image 进行 绘制图片的时候的  的左边原点 是哪里 ,

    border-box(边框的外边缘) ,  padding-box(paddng的外边缘 , 这是 默认值)  , content-box(内容的 外边缘)

第二: background-clip 是针对 背景(背景色 + 背景图) (已经绘制出来的图形 ,图片) 进行裁剪 ,显示一部分.

  它定义的是从哪里开始裁剪 , border-box (默认) , padding-box , content-box

  -----------

  注意: background-color 默认是 在 border的外边缘;    background-image 默认是 在 padding的外边缘;

     同时 , background-clip 默认是 从border-box 开始裁剪 , 因此背景色 ,背景图 都 可以被完成的裁剪.

------------------------------

 <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>background-image: 定位的起点默认是是padding的外边缘, 可以通过background-origin修改</title>
<style type="text/css">
.box {
width: 200px;
height: 200px;
border: 50px dotted black; background-color: red;
background-image: url(img/2.png);
background-size: 100px 100px;
background-repeat: no-repeat; padding: 50px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<h2>原图</h2>
<div>
<img src="img/2.png" style="height: 100px ; width: 100px;" ?>
</div> <h2>正常: border-origin: padding-box; border-clip: border-box; <br>
此时 background-color:显示所有; background-image显示所有
</h2>
<div class="box">
1111
</div>
<h2>border-clip: padding-box;<br>
background-color:裁剪了一部分; background-image 显示所有
</h2>
<div class="box" style="background-clip: padding-box;">
1111
</div> <h2>border-clip: padding-box; background-origin: border-box;<br>
background-color:裁剪了一部分; background-image 显示一部分:
</h2>
<div class="box" style="background-clip: padding-box; background-origin: border-box;">
1111
</div> <h2>border-clip: content-box; background-origin: border-box;<br>
background-color:裁剪了一部分; background-image 完全被裁剪掉了:
</h2>
<div class="box" style="background-clip: content-box; background-origin: border-box;">
1111
</div> <h2>border-clip: content-box; background-origin: content-box;<br>
background-color:裁剪了一部分; background-image 显示所有:
</h2>
<div class="box" style="background-clip: content-box; background-origin: content-box;">
1111
</div>
</body>
</html>

显示:

--

-------

----------------

----------------

----------------

----------------------------

总结:

  1. background-color 绘制 背景色 是 固定 的 从 border-box 开始的 .  并且 无法修改

  2. background-image  绘制 背景图 是 默认 从 padding-box 开始的,   可以通过  background-origin 进行 修改.

    注意: background-origin 只是对 background-image 产生效果.

  3. background-clip 是 对背景色, 背景图 进行 裁剪, 显示 其中的一部分, 默认 是 从 border-box 开始 裁剪.

参考链接:

  css3属性中background-clip与background-origin的用法释疑   

background 的一些 小的细节: 1, 背景色覆盖范围: border+ width+ padding ;背景图覆盖范围: width + padding ; 2设置多个背景图片 ; 3) background-position定位百分比的计算方式: 4)background-clip 和 background-origin 的区别的更多相关文章

  1. 20190328-CSS样式一:字体样式font-、文本样式text-、背景图样式background-

    目录 CSS参考手册:http://css.doyoe.com/ 1.字体简写:font:font-style || font-variant || font-weight || font-size ...

  2. css3-background clip 和background origin

    1.background-origin background-origin 里面有3个参数 : border-box | padding-box | content-box; border-box,p ...

  3. css 背景(background)属性、背景图定位

    background属性: Background属性是css中应用比较多,且比较重要的一个属性,它是负责给盒子设置背景图上和背景颜色的,background是一个复合属性,它可以分解成如下几个设置项: ...

  4. background 设置文本框背景图

    background 属性的作用是给元素设置背景,它是一个复合属性,常用的子属性如下: background-color 指定元素的背景颜色. background-image 指定元素的背景图像. ...

  5. 全屏背景图的实现及background的相关属性

    今天需要做一个占满设备宽度的轮播图,这里作为demo仅展示一张图,下面分别是要操作的图片(这里做了缩放处理,实际的图比较大),以及要实现的效果图,很明显两者是不成比例的:      (图一)     ...

  6. background属性怎么添加2个或多个背景图

    最近遇到一个需求,下面充值金额按钮是一个背景图,点击之后显示的状态也是一个背景图,如下图      按照惯用的套路,新增一个class,点击后的状态直接写在里面即可 然而点击后,虽然状态背景成功显示出 ...

  7. css中的背景色渐变以及背景图的定位

    单纯的背景色渐变: background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #fff), color-stop(1, #ddd) ...

  8. HTML中设置背景图的两种方式

    HTML中设置背景图的两种方式 1.background    background:url(images/search.png) no-repeat top; 2.background-image ...

  9. 2种不同方式实现背景图里加入文字的简单CSS样式

    如果让你实现下图的样式(图片里面插入文字),你会怎么做呢? 我总结了2种方式 ①:用 img src属性直接引入图片 + 定位 ②:用背景图且不使用定位 第一种: HTML <div class ...

随机推荐

  1. scrapy 爬虫框架(一)

    一 . scrapy 的安装 安装scrapy框架时,需要先安装依赖包. #Linux: pip3 install scrapy #Windows: a. pip3 install wheel b. ...

  2. vue组件插槽

    vue中子组件内容如何定义为可扩展的呢,就是用slot插槽来实现.如下图 如果<slot></slot>标签有内容,那就默认显示里面的内容,父组件传了就会覆盖此默认的内容.

  3. sqlserver用timestamp帮助解决数据并发冲突 转【转】

    http://blog.csdn.net/u011014032/article/details/42936783 关于并发请求,网上很多朋友都说的很详细了,我就不在这里献丑了.这里只记录下刚刚完工的那 ...

  4. CRM WEB UI 02搜索跳转到详细界面

    结合上一个,在上一个中,创建的是选择链接字段EBELN. 下面来实现点击EBELN跳转到详细界面: 1.创建ZLYTEST03_H组件,做详细界面. 2.创建概览页 DETOV. 3.创建视图集 DE ...

  5. git相关知识(github,idea等的配置)

    本地git提交文件到github上: 1.在github上创建项目 2.使用git clone https://github.com/xxxxxxx/xxxxx.git克隆到本地 3.编辑项目 4.g ...

  6. CSS知识点(二)

    七.CSS的继承性和层叠性 继承性 面向对象语言都会存在继承的概念,在面向对象语言中,继承的特点:继承了父类的属性和方法.那么我们现在主要研究css,css就是在设置属性的.不会牵扯到方法的层面. 继 ...

  7. Hive QL的操作

    一.数据定义DDL操作 创建表: --create table为创建一个指定名字的表 create(external) table table_name --external关键字可以让用户创建一个外 ...

  8. Oracle 12c启动时PDBs的自动打开

    Pluggable Database(PDB)为Oracle 12c中的一个重要的新特性, 但启动12c实例时并不会自动打开PDB数据库,这样,在启动实例后必须手动打开PDBs. 1. 实例启动后,手 ...

  9. 通过springboot 去创建和提交一个表单(七)

    创建工程 涉及了 web,加上spring-boot-starter-web和spring-boot-starter-thymeleaf的起步依赖. 1 2 3 4 5 6 7 8 9 10 11 1 ...

  10. lombok @Slf4j注解

    背景知道有这么个东西,是因为项目中用到了@Slf4j注解. lombok库提供了一些注解来简化java代码 官网:http://projectlombok.org/ 查看lombok所有api:htt ...