HTML是網(wǎng)頁(yè)的基礎(chǔ)語(yǔ)言,它可以用于設(shè)置網(wǎng)頁(yè)背景。在HTML中,設(shè)置背景需要使用CSS樣式表。
body { background-image: url("bg-image.jpg"); background-repeat: no-repeat; background-size: cover; }
以上代碼表明設(shè)置網(wǎng)頁(yè)背景為一張名為"bg-image.jpg"的圖片,并且不重復(fù)平鋪,以覆蓋整個(gè)網(wǎng)頁(yè)背景。
具體來(lái)說(shuō),可以使用以下語(yǔ)句實(shí)現(xiàn)不同的背景效果:
background-color: red; /*設(shè)置純色背景*/ background-image: url("bg-image.jpg"); /*設(shè)置背景為圖片*/ background-repeat: repeat; /*平鋪重復(fù)背景*/ background-size: contain; /*在保留比例的情況下盡可能填充背景*/ background-position: center; /*設(shè)置背景圖像的位置*/ background-attachment: fixed; /*固定背景圖像,不隨滾動(dòng)而移動(dòng)*/
通過以上CSS樣式表中的代碼,可以輕松設(shè)置網(wǎng)頁(yè)的背景顏色、圖片、平鋪方式、以及位置和隨滾動(dòng)而移動(dòng)狀態(tài)等。