[CSS3] Background

来源:互联网 发布:单词朗读软件 编辑:程序博客网 时间:2024/05/20 02:27

background: image | position | size | repeat | attachment | clip |origin

(1) 基础

background-color
background-image: url();
background-repeat: repeat-x repeat-y
background-attachment: scroll fixed
(背景图片是否随着页面滚动)
(取值fixed的时候, 一般用在html或body上面 其他标签达不到目的)
background-position: center left right top bottom

这里写图片描述


(2) Updata

[1] background-origin

div{    display: inline-block;    padding:30px;    width:100px;    height:100px;    margin:10px;    border:25px solid green;    background:url(../1.jpg) no-repeat;    font-weight: bold;}.div2{    /*以内容为起点*/    background-origin:content-box;}.div3{   /*以padding为起点*/    background-origin:padding-box;}.div4{   /*以border为起点*/    background-origin:border-box;}

这里写图片描述

这里写图片描述


[2] background-clip

将background-orign-> 改成 clip
这里写图片描述

其实background-clip: 决定背景在哪些区域显示。
(1) 值为border = border+补白+content
(2) 值为padding= 补白+content
(3) 值为content =content

background-origin & clip区别:

background-orign指的是 从哪个位置显示
background-clip更多的是关注 clip 修剪, 在哪个位置显示

background-orign
这里写图片描述
background-clip
这里写图片描述


[3] background-size

这里写图片描述

这里写图片描述

这里写图片描述

这里写图片描述

background-size: cover是填充
background-size: contain是图片等比例的缩放 缩放到宽度或者高度适合


[4] background-break

内联元素 定义背景方式

0 0
原创粉丝点击