您好,登錄后才能下訂單哦!
1,背景顏色background-color
background-color 不能繼承,其默認值是 transparent。transparent 有“透明”之意。也就是說,如果一個元素沒有指定背景色,那么背景就是透明的,這樣其祖先元素的背景才能可見。
p {
background-color: gray; 和普通顏色設置是一樣的
}
2.背景的圖片background-img
background-p_w_picpath: url(圖片的路徑);
background-p_w_picpath: none; 默認值是 none
另外還要補充一點,background-p_w_picpath 也不能繼承。事實上,所有背景屬性都不能繼承。
3,背景重復 backgroun-repeat
background-repeat: repeat; 重復平鋪滿 background-repeat:repeat-x; 向x軸重復 background-repeat:repeat-y; 向Y軸重復 background-repeat:no-repeat; 不重復 body { background-p_w_picpath: url(/i/eg_bg_03.gif); background-repeat: repeat-y; }
4,背景位置background-position
為 background-position 屬性提供值有很多方法。首先,可以使用一些關鍵字:top、bottom、left、right 和 center。
根據規范,位置關鍵字可以按任何順序出現,只要保證不超過兩個關鍵字 - 一個對應水平方向,另一個對應垂直方向。
如果只出現一個關鍵字,則認為另一個關鍵字是 center。
也可以使用數值位置來表示(background-position:50px 100px;)
單一關鍵字 | 等價的關鍵字 |
---|---|
center | center center |
top | top center 或 center top |
bottom | bottom center 或 center bottom |
right | right center 或 center right |
left | left center 或 center left |
p
{
background-p_w_picpath:url('bgimg.gif');
background-repeat:no-repeat;
background-position:top;
}
等價于
p
{
background-p_w_picpath:url('bgimg.gif');
background-repeat:no-repeat;
background-position:top center;
background-position:center top;
}
5,背景關聯 background-p_w_upload
如果文檔比較長,那么當文檔向下滾動時,背景圖像也會隨之滾動。當文檔滾動到超過圖像的位置時,圖像就會消失。
您可以通過 background-p_w_upload 屬性防止這種滾動。通過這個屬性,可以聲明圖像相對于可視區是固定的(fixed),因此不會受到滾動的影響:也就是說,文檔滾動背景圖一直存在。
body { background-p_w_picpath:url(/i/eg_bg_02.gif); background-repeat:no-repeat; background-p_w_upload:fixed }
如需查看上例的效果,可以親自試一試。
background-p_w_upload 屬性的默認值是 scroll,也就是說,在默認的情況下,背景會隨文檔滾動。也就是說超過的文檔不會顯示圖片背景效果.
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。