background-position的說明:
設置或檢索對象的背景圖像位置。必須先指定 background-image 屬性。該屬性定位不受對象的補丁屬性( padding )設置影響。
默認值爲: 0% 0% 。此時背景圖片將被定位於對象不包括補丁( padding )的內容區域的左上角。
若是隻指定了一個值,該值將用於橫座標。縱座標將默認爲 50% 。若是指定了兩個值,第二個值將用於縱座標。
若是設置值爲 right center,由於 right 做爲橫座標值將會覆蓋 center 值,因此背景圖片將被居右定位。
對應的腳本特性爲 backgroundPosition 。css
語法:
background-position : length || length
background-position : position || positionhtml
取值:
length : 百分數 | 由浮點數字和單位標識符組成的長度值。
position : top | center | bottom | left | center | righturl
background-position -- 定義背景圖片的位置spa
取值:
[ <percentage> | <length> | left | center | right ] [ <percentage> | <length> | top | center | bottom ] ]
* 水平
left: 左
center: 中
right: 右
* 垂直
top: 上
center: 中
bottom: 下
* 垂直與水平的組合
x-% y-%
x-pos y-poscode
初始值: 0% 0%
繼承性: 否
適用於: 全部元素
background:背景.position:位置.xml
重點講解的地方:htm
Example Source Code [www.52css.com] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="UTF-8"> <head> <title>CSS背景圖片的定位background-position的問題 - PIGZZ.COM</title> <style type="text/css"> <!-- *{ margin:0; padding:0; } body { text-align:center; background:#000; } #container{ width:1000px; margin:0 auto; background:#fff url(images/1.gif) no-repeat left top; height:500px; } --> </style> </head> <body> <div id="container"> </div> </body> </html>
一.background-position:left top;(見圖1).
背景圖片的左上角和容器(container)的左上角對齊,超出的部分隱藏。
等同於 background-position:0,0;
也等同於background-position:0%,0%;對象
二.background-position:right bottom;(見圖2)。
背景圖片的右下角和容器(container)的右下角對齊,超出的部分隱藏。
等同於background-positon:100%,100%;
也等同於background-positon:容器(container)的寬度-背景圖片的寬度,容器(container)的高度-背景圖片的高度blog
三.background-position:500px 15px;(見圖3)。
背景圖片從容器(container)左上角的地方向右移500px,向下移15px,超出的部分隱藏。繼承
四.background-position:-500px -15px;(見圖4)。
背景圖片從容器(container)左上角的地方向左移500px,向上移15px,超出的部分隱藏。
五.background-position:50% 50%;(見圖5)。
等同於left:{容器(container)的寬度—背景圖片的寬度}*left百分比,超出的部分隱藏。
等同於right:{容器(container)的高度—背景圖片的高度}*right百分比,超出的部分隱藏。
例如:background-position:50% 50%;就是background-position:(1000-2000)*50%px,(500-30)*50%px;即background-position:-500px,235px;也就是背景圖片從容器(container)的左上角向左移500px,向下移235px;
六.background-position:-50% -50%;(見圖6)。(這種狀況背景圖片應該用bg2.jpg才能看出效果,bg.jpg的高度過小效果不明顯)等同於left:-{{容器(container)的寬度—背景圖片的寬度}*left百分比(百分比都取正值)},超出的部分隱藏。等同於right:-{{容器(container)的高度—背景圖片的高度}*right百分比(百分比都取正值)},超出的部分隱藏。例如:background-position:-50% -50%;就是background-position:-{(1000-500)*50%}px,-{(500-360)*50%}px;即background- position:-250px,-70px;也就是背景圖片從容器(container)的左上角向左移250px,向上移70px;