溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

css 背景屬性詳細(xì)總結(jié)

發(fā)布時(shí)間:2020-07-30 13:21:05 來源:網(wǎng)絡(luò) 閱讀:342 作者:crazy_charles 欄目:開發(fā)技術(shù)


1,背景顏色background-color 

background-color 不能繼承,其默認(rèn)值是 transparent。transparent 有“透明”之意。也就是說,如果一個(gè)元素沒有指定背景色,那么背景就是透明的,這樣其祖先元素的背景才能可見。

p {

background-color: gray;  和普通顏色設(shè)置是一樣的

}



2.背景的圖片background-img

background-p_w_picpath: url(圖片的路徑);

background-p_w_picpath: none; 默認(rèn)值是 none

另外還要補(bǔ)充一點(diǎn),background-p_w_picpath 也不能繼承。事實(shí)上,所有背景屬性都不能繼承。


3,背景重復(fù) backgroun-repeat

background-repeat: repeat;  重復(fù)平鋪滿
background-repeat:repeat-x;  向x軸重復(fù) 
background-repeat:repeat-y;  向Y軸重復(fù)
background-repeat:no-repeat;  不重復(fù)

body
  { 
  background-p_w_picpath: url(/i/eg_bg_03.gif);
  background-repeat: repeat-y;
  }

4,背景位置background-position

為 background-position 屬性提供值有很多方法。首先,可以使用一些關(guān)鍵字:top、bottom、left、right 和 center。

根據(jù)規(guī)范,位置關(guān)鍵字可以按任何順序出現(xiàn),只要保證不超過兩個(gè)關(guān)鍵字 - 一個(gè)對(duì)應(yīng)水平方向,另一個(gè)對(duì)應(yīng)垂直方向。

如果只出現(xiàn)一個(gè)關(guān)鍵字,則認(rèn)為另一個(gè)關(guān)鍵字是 center。

也可以使用數(shù)值位置來表示(background-position:50px 100px;)


單一關(guān)鍵字等價(jià)的關(guān)鍵字
centercenter center
toptop center 或 center top
bottombottom center 或 center bottom
rightright center 或 center right
leftleft center 或 center left

p

  { 

    background-p_w_picpath:url('bgimg.gif');

    background-repeat:no-repeat;

    background-position:top;

  }

等價(jià)于

p

  { 

    background-p_w_picpath:url('bgimg.gif');

    background-repeat:no-repeat;

    background-position:top center;

   background-position:center top;


  }


5,背景關(guān)聯(lián) background-p_w_upload


如果文檔比較長(zhǎng),那么當(dāng)文檔向下滾動(dòng)時(shí),背景圖像也會(huì)隨之滾動(dòng)。當(dāng)文檔滾動(dòng)到超過圖像的位置時(shí),圖像就會(huì)消失。

您可以通過 background-p_w_upload 屬性防止這種滾動(dòng)。通過這個(gè)屬性,可以聲明圖像相對(duì)于可視區(qū)是固定的(fixed),因此不會(huì)受到滾動(dòng)的影響:也就是說,文檔滾動(dòng)背景圖一直存在。

body 
  {
  background-p_w_picpath:url(/i/eg_bg_02.gif);
  background-repeat:no-repeat;
  background-p_w_upload:fixed
  }

如需查看上例的效果,可以親自試一試。

background-p_w_upload 屬性的默認(rèn)值是 scroll,也就是說,在默認(rèn)的情況下,背景會(huì)隨文檔滾動(dòng)。也就是說超過的文檔不會(huì)顯示圖片背景效果.


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI