當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > 背景圖片重復(fù)css background-repeat屬性

背景圖片重復(fù)css background-repeat屬性

2012/11/24 19:19:58作者:佚名來源:網(wǎng)絡(luò)

移動端

【實例介紹】

背景圖片重復(fù)css background-repeat屬性

使用background-repeat屬性可以設(shè)置背景圖像是否平鋪,并且可以設(shè)置如何平鋪。

【基本語法】

background-repeat:取值

【語法介紹】

no-repeat表示背景圖像不平鋪;repeat表示背景圖像平鋪排滿整個網(wǎng)頁;repeat.x表示背景圖像只在水平方向上平鋪;repeat—Y表示背景圖像只在垂直方向上平鋪。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標(biāo)題文檔</title> </head> <style type="text/css"> body {  font-size: 13px;  line-height: 20px;  background-image: url(bg.jpg);  background-repeat: repeat-x} </style> <body > <p>六月里,我們相遇。</p> <p>六月里,我們再次離開。</p> <p>這是個屬于夢想飛翔的年紀(jì),也是屬于享受甜蜜的時光。</p> <p>年輕是我們的資本,是我們的驕傲,是我們的流觴,更是我們心底最柔軟的溫馨……</p> </body> </html>

【代碼分析】

使用background.repeat:repeat—x將背景圖像設(shè)置為橫向重復(fù)排列,在瀏覽器中預(yù)覽效果。如圖所示。

背景圖片重復(fù)background-repeat運行效果
 【素材及源碼下載】

請點擊:背景圖片重復(fù)css background-repeat 下載本實例相關(guān)素材及源碼

 

標(biāo)簽: 背景  圖片  重復(fù)