css中背景位置position怎么用
这篇文章将为大家详细讲解有关css中背景位置position怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
语法:注意:background-position : length || length
background-postiton: position || position
length:百分数|由浮点数字和单位标识符 组成的长度值
positon :top | center| bottom | left | center |right 方位名词
必须指定backgroud-image属性
postion后面是X坐标和y坐标,可以使用方位名词或者精确单位
如果只指定了一个方位名词,另一个值默认居中对齐,为50%
如果只指定了一个数值,那该数值用于X坐标,另一个默认是y坐标,默认居中
如果是精确坐标,第一个是x坐标第二个是y坐标。
如果指定了两个值,两个值都是方位名词,则两个词顺序无关,比如left top 和top left效果一样。
如果指定了两个值,精确单位和方位名字混合使用,则第一个值是x坐标,第二个值是y坐标。
<!DOCTYPEhtml><html><head><metacharset="utf-8"><title></title><style>div{width:600px;height:300px;background-color:pink;background-image:url(images/ldh.jpg);background-repeat:no-repeat;/*左上角*/background-position:lefttop;/*水平垂直居中*/background-position:centercenter;/*距离左10px距离上50px*/background-position:10px50px;/*x坐标10px垂直居中*/background-position:10px;}</style></head><body></body><div></div></html>
关于“css中背景位置position怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。