码迷,mamicode.com
首页 > Web开发 > 详细

CSS背景

时间:2019-04-21 14:23:14      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:之间   header   图片展示   对齐   alpha   参数   一个   repeat-x   支持   

CSS背景(background)

CSS可以添加背景颜色和背景图片,以及来进行图片设置。

blockground-color 背景颜色
background-image 背景图片地址
background-repeat 是否平铺
background-position 背景位置
background-attachment 背景固定还是滚动

背景的合写:

background: 背景颜色 背景图片地址 背景平铺 背景滚动 背景位置

背景图片(image)

语法:

background-image: none | url(url)

参数:

none : 无背景(默认的)
url : 使用绝对或相对地址指定背景图片
background-image属性允许指定一个图片展示在背景中只有(CSS3才可以多背景)可以和background-color连用。如果图片不重复地话,图片覆盖不到地地方都会被背景色填充。如果有背景图片平铺,则会覆盖背景颜色。

背景平铺(repeat)

语法:

background-repeat: repeat | no-repeat | repeat-x | repeat-y

参数:

repeat : 背景图像在纵向和横向上平铺(默认)
no-repeat: 背景图像不平铺
repeat-x: 背景图像在横向上平铺
repeat-y: 背景图像在纵向平铺
设置背景图片时,默认把图片在水平和垂直方向平铺以铺满整个元素。

背景位置(position)

语法:

background-position : length || length
background-position : position || position

参数:

length : 百分数 | 由浮点数字和单位标识符组成的长度值
position : top | center | bottom | left | center |right 
设置或检索对象的背景图像位置,必须先指定background-image属性,默认值为(0%,0%)
如果只指定了一个值,该值将用于横坐标。纵坐标将默认为50%,第二个值将是纵坐标。

注:

1. position 后面是x坐标和y坐标。 可以使用方位名词或者 精确单位。
2. 如果和精确单位和方位名字混合使用,则必须是x坐标在前,y坐标后面。比如 background-position: 15px top;   则 15px 一定是  x坐标   top是 y坐标。
实际中使用较多的是背景图片居中对齐了。

背景符着

语法:

background-attachment : scroll | fixed 

参数:

scroll : 背景图像是随对象内容滚动
fixed : 背景图像固定
设置或检索背景图像是随对象内容滚动还是固定的。

背景简写

background属性的值的书写顺序官方并没有强制标准的。一般为了可读性,建议如下:

background:背景颜色 背景图片地址 背景平铺 背景滚动 背景位置
background:transparent url(image.jpg) repeat-y scroll 50% 0;

背景透明(CSS3)

css3支持背景半透明的写法语法格式是:

background:rgba(0,0,0,0,3);
最后一个参数是alpha透明度,取值0~1之间;
背景半透明是指盒子背景半透明,盒子里面的内容不受影响;

CSS背景

标签:之间   header   图片展示   对齐   alpha   参数   一个   repeat-x   支持   

原文地址:https://www.cnblogs.com/yinjin/p/10744953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!