首先先来看看background有那些值:

可以按顺序设置如下属性(可点击进入相应的css手册查看使用):
background-color 背景颜色
background-image 背景图片
background-repeat 背景重复
background-attachment 背景图片是固定还是滚动
background-position 背景图片的定位

接下来我们重点来讲解css background通常的使用方法
首先我们来看下面一段代码
background:url(bgimg.gif) no-repeat 5px 5px;
如下图解释:

background:

background为符合属性.属性如下:

background:background-color ||background-image || background-repeat || background-attachment || background-position

border-style: none; margin-top: 5px; margin-bottom: 5px; color: rgb(0, 0, 0); font-family: 'black Verdana', Arial, Helvetica, sans-serif;">

默认值:tansparent

取值 描述(背景颜色) 例子 效果
transparent 背景颜色透明
    <div style="background-color:Aqua">
<span style="border:solid 1px black">span</span><br />
div
</div>
color 指定颜色
1.系统定义的颜色
2.rgb(100,100,100)
3.#FFEE11
    <div style="background-color:Silver">和谐社会</div>
<div style="background-color:rgb(100,200,90)">和谐社会</div>
<div style="和谐社会</div>

 

background-image:

默认值:none

取值 描述(背景图片) 例子 效果
none 没有背景图片
    <div style="background-image:none">Background</div>
url(url)

使用绝对或相对的url指定背景图片

    <div style="background-image:url('del.gif')"></div>

 

background-repeat:

默认值:repeat

取值 描述(背景平铺) 例子 效果
repeat 在横向和纵向上平铺
 
<div style="background-image:url('del.gif'); background-repeat:repeat">
</div>
no-repeat 不平铺
<div style="background-image:url('del.gif'); background-repeat:no-repeat">
</div>
repeat-x 在横向上平铺
<div style="background-image:url('del.gif'); background-repeat:repeat-x">
</div>
repeat-y 在纵向上平铺
<div style="background-image:url('del.gif'); background-repeat:repeat-y">
</div>

 

background-attachment:

默认值:scroll

取值 描述(背景滚动) 例子 效果
scroll 跟随内容滚动
<body  style="background-image:url('del.gif'); background-repeat:no-repeat;
background-attachment:scroll">
</body>
随着滚动条的移动,可能就看不到了.
fixed 不论怎样滚动,始终固定在页面上
<body  style="background-image:url('del.gif'); background-repeat:no-repeat;
background-attachment:fixed ">
</body>
始终显示

 

background-position:

默认值:0% 0%

如果只指定了一个值,该值将用于横坐标。纵坐标将默认为 50% 。如果指定了两个值,第二个值将用于纵坐标。

表达 例子 效果
background-position: length || length
百分数 | 由浮点数字和单位标识符组成的长度值
<div style="background-image:url('del.gif'); background-position:10px 10px;
background-repeat:no-repeat">
</div><br />
<div style="background-image:url('del.gif'); background-position:50% 50%;
background-repeat:no-repeat">
</div>
background-position:position||position

第一个position: top center bottom
第二个position: left center right

 
<div style="background-image:url('del.gif'); background-position:left center;
background-repeat:no-repeat">
</div><br />
<div style="background-image:url('del.gif'); background-position:center center;
background-repeat:no-repeat">
</div>

 

属性名 取值 默认值
background-position-x length/left/center/right 0%
background-position-y length/top/center/bottom 0%

一个网站上的图片或图标都在一张图片上的css制作方法:

1.CSS样式

 .d1{width:13px;height:70px; border:#C00 1px solid;background:url(ex_icon.png) 0 0 no-repeat;}
.d2{width:13px;height:70px; border:#C00 1px solid;background:url(ex_icon.png) -14px 0 no-repeat;}
.e1{width:23px;height:70px; border:#C00 1px solid;background:url(ex_icon.png) -36px 0 no-repeat;}/*background:url(ex_icon.png) -36px(往右) 0(往下) */
.e2{width:23px;height:70px; border:#C00 1px solid;background:url(ex_icon.png) -61px 0 no-repeat;}

2.html代码

 <div class="d1"></div>
<div class="d2"></div> <div class="e1"></div>
<div class="e2"></div>

3.图片

CSS background 之设置图片为背景技巧的更多相关文章

  1. css background之设置图片为背景技巧

    css background之设置图片为背景技巧-css 背景 Background是什么意思,翻译过来有背景意思.同样在css里面作为css属性一成员同样是有背景意思,并且是设置背景图片.背景颜色. ...

  2. css background之设置图片为背景技巧

    原文 Background是什么意思,翻译过来有背景意思.同样在css里面作为css属性一成员同样是有背景意思,并且是设置背景图片.背景颜色.背景图片截取等样式. 首先先来看看background有那 ...

  3. 在css中设置图片的背景图,怎么设置图片纵向拉伸

    css中设置背景图拉伸填充,在css2.1之前这个背景的长宽值是不能被修改的. 实际的结果是只能重复显示,可以使用repeat,repeat-x,repeat-y,no-repeat这些属性来控制背景 ...

  4. css一个div设置多个背景图片

    html:定义一个div <div class="item__content"></div> css:样式 .item__content { positio ...

  5. CSS 背景-CSS background

    这里有个很好的样式学习网站:http://www.divcss5.com/rumen/r125.shtml 一.Css background背景语法   -   TOP CSS背景基础知识 CSS 背 ...

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

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

  7. css网页中设置背景图片的方法详解

    在css代码中设置背景图片的方法,包括背景图片.背景重复.背景固定.背景定位等   用css设置网页中的背景图片,主要有如下几个属性: 1,背景颜色 {">说明:参数取值和颜色属性一样 ...

  8. css background 背景知识详解

    background 背景属性 我们知道元素有前景色color,与之对应的还有背景色,通过background我们可以为元素添加实色(background-color)和任意多个背景图片(backgr ...

  9. background 设置文本框背景图

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

随机推荐

  1. 可以动态增加系统的U盘启动器(基于grub)

    前言:最近面试无果,就在宿舍看那本<30天自制操作系统>,里面使用的系统文件格式是img,要在真机上运行,就需要使用U盘进行启动,因为现在都没有软盘.而网上很多都是用软件写入U盘的.反正我 ...

  2. CCToggleVisibility和CCPlace

    CCActionInterval* move1 = CCMoveBy::create(, ccp(,)); CCActionInterval* move2 = CCMoveBy::create(, c ...

  3. I/O Completion Ports

    http://weblogs.asp.net/kennykerr/parallel-programming-with-c-part-4-i-o-completion-ports http://webl ...

  4. linux学习(34):except的安装

    expect据说是交互性很强的脚本语言,但是expect依赖于tcl,但linux系统里一般不自带安装tcl,需要手动安装 expect版本 5.43 http://download.chinauni ...

  5. solr中时区处理

    solr.in.sh中的最后 # By default the start script uses UTC; override the timezone if needed SOLR_TIMEZONE ...

  6. feignclient设置hystrix参数

    序 feign默认集成了hystrix,那么问题来了,如何像hystrix command那样设置每个方法的hystrix属性呢. 实例 @FeignClient("product" ...

  7. mysql从文件中导入数据

    linux: load data infile '/tmp/dnslog.txt' into table dnslog_cnnic_cn fields terminated by ' ' lines ...

  8. 在开发中写一些tool来提升自己的效率

    比如说,我在调试一个web-project的时候,因为eclipse默认编译好的.class文件放在/build/classes/中,但是我希望随时把这些class文件放到/WEB-ROOT/WEB- ...

  9. git 分支管理 推送本地分支到远程分支等

    1.创建本地分支 local_branch git branch local_branch 2.创建本地分支local_branch 并切换到local_branch分支 git checkout - ...

  10. .NetCore简介

    引用:https://docs.microsoft.com/zh-cn/dotnet/articles/core/index .NET Core 是一个通用开发平台,由 Microsoft 和 Git ...