背景相关属性
背景颜色
。如何设置标签的背景颜色?
。在css中可以通过background-color:属性设置标签的背景颜色
。取值
具体单词
rgb
rgba
十六进制
<style>
div{
width: 100px;
height: 50px;
}
.box1{
background-color: red;
}
.box2{
background-color: rgb(0,255,0);
}
.box3{
background-color: rgba(0,0,255,0.7);
}
.box4{
background-color: #0ff;
}
</style>
快捷键
。bc backkground-color:#ff;
背景图片
如何设置图片
在CSS可以通过background-image: url();设置背景图片
格式:
<style>
div{
width: 500px;
height: 500px;
}
.box1{
background-image: url(images/girl.jpg);
/background-image: url(http://img4.imgtn.bdimg.com/it/u=2278032206,4196312526&fm=21&gp=0.jpg);/
}
</style>
<div class="box1"></div>
注意点:
1图片的地址必须放在url()中,图片的地址可以是本地地址,也可以是网络的地址
2如果图片的大小没有标签的大小大,那么会自动在水平和垂直方向平铺来填充
3如果网页上出现了图片,那么浏览器会再次发送请求获取图片
快捷键:
。bi background-image:wrl();
背景平铺
如何控制背景图片的平铺方式?
在css中可以通过background-repeat属性控制背景图片的平铺方式的
取值:
repeat 默认, 在水平和垂直都需要平铺
no-repeat 在水平和垂直都不需要平铺
repeat-x 只在水平方向平铺
repeat-y 只在垂直方向平铺
格式:
<style>
/*
div{
width: 500px;
height: 500px;
}
.box1{
background-color: red;
background-image: url(images/girl.jpg);
background-repeat: repeat-y;
}
</style>
<div class="box1"></div>
应用场景:
可以通过背景图片的平铺来降低图片的大小,提升网页的访问速度
可以将多张图片拼接成一张图片
注意点
背景颜色和背景图片可以共存,图片会覆盖颜色
快捷键:
bgr backgroun-position:
背景定位
如何控制背景图片的位置?
在css中有一个叫做backg-position:属性,就是专门用于控制背景图片的位置
格式:
background-position: 水平方向 垂直方向;
取值:
具体的方位名词
水平方向: left center right
垂直方向: top center bottom
<style>
div{
/width: 500px;/
height: 500px;
}
.box1{
background-color: red;
background-image: url(images/girl.jpg);
background-repeat: no-repeat;
/background-position: left top;/
/background-position: right top;/
/background-position: right bottom;/
/background-position: left bottom;/
/background-position: center center;/
/background-position: left center;/
background-position: center top;
}
</style>
<div class="box1"></div>
具体的像素
例如: background-position: 100px 200px;
记住一定要写单位, 也就是一定要写px
记住具体的像素是可以接收负数的
<style>
div{
/width: 500px;/
height: 500px;
}
.box1{
background-color: red;
background-image: url(images/girl.jpg);
background-repeat: no-repeat;
/background-position: 100px 0;/
/background-position: 100px 200px;/
background-position: -100px -100px;
}
</style>
应用场景:
当图片比较大的时候,可以通过定位属性保证图片永远居中显示
快捷键:
bp background-position: 0 0;
背景属性连写
和font属性一样,background属性也可以连写
背景属性缩写格式
background:背景颜色 背景图片 平铺方式 关联方式 定位方式:
注意点:
background属性中,任何一个属性都可以被省略
快捷键:
bg+ background: #fff url() 0 0 no-repeat;
背景关联
什么是背景关联方式?
默认情况下背景图片会随着滚动条的滚动而滚动,如果不想让背景图片随着滚动条的滚动而滚动,那么我们就可以修改背景图片和滚动条的关联方式
如何修改背景关联方式?
在css中有一个叫做background-attachment的属性,这个属性就是专门用于修改关联方式的
格式
background-attachment:scroll;
取值
scroll默认值,会随着滚动条的滚动而滚动
fixed不会随这滚动条的滚动而滚动
快捷键:
ba background-attachment:;
插入图片和背景图片的区别
1
背景图片仅仅是一个装饰,不会占用位置
插入图片会占用位置
2
背景图片有定位属性,所以可以很方便的控制图片的位置。
插入图片没有定位属性,所有控制图片的位置不太方便
3
插入图片的语义比背景图片的语义要强,所以在企业开发中如果你的图片想被搜索引擎收录,那么推荐使用插入图片