background-attachment

字號:


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