background-attachment : scroll | fixed

字號:


    語法:
    background-attachment : scroll | fixed
    取值:
    scroll :  默認(rèn)值.背景圖像是隨對象內(nèi)容滾動(dòng)
    fixed :  背景圖像固定
    說明:
    設(shè)置或檢索背景圖像是隨對象內(nèi)容滾動(dòng)還是固定地.
    此屬性對于 currentstyle 對象而言是只讀地.對于其他對象而言是可讀寫地.
    請參閱 bgproperties 屬性(特性).對應(yīng)地腳本特性為 backgroundattachment .
    示例:
    html { background-image: url(anasazi.tif); background-attachment: fixed; }
    body { background-attachment: scroll; }