css代碼添加背景圖片經常使用代碼
1 背景顏色 { font-size: 16px; content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;">
2 背景圖片 {background-image: url(url)|none}
3 背景重複 {background-repeat:inherit|no-repeat|repeat|repeat-x|repeat-y}
4 背景固定 {background-attachment:fixed|scroll}
5 背景定位 {background-position:數值|top|bottom|left|right|center}
6 背影樣式 {background:背景顏色|背景圖象|背景重複|背景附件|背景位置}
1.背景顏色:background-color
語法:{ font-size: 16px; content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;"> 說明:參數取值和顏色屬性同樣
注意:在html當中,要爲某個對象加上背景色只有一種辦法,那就是先作一個表格,在表格中設置完背景色,再把對象放進單元格。這樣作比較麻煩,不但代碼較多,還要爲表格的大小和定位傷些腦筋。如今用css就能夠輕鬆地直接搞定了,並且對象的範圍很廣,能夠是一段文字,也能夠只是一個單詞或一個字母。
例子:給部分文字加背景顏色給部分文字加背景顏色
表格背影顏色:style=" font-size: 16px; content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;">
2.背景圖片:background-image
語法:{background-image: url(url)|none}
說明: url就是背景圖片的存放路徑。若是用「none」來代替背景圖片的存放路徑,將什麼也不顯示。
例子:給部分文字加背景圖片 .imgbgstyle { background-image: url(logo.gif)}
3.背景重複:background-repeat
語法:{background-repeat:inherit|no-repeat|repeat|repeat-x|repeat-y}
做用:背景圖片重複控制的是背景圖片平鋪與否,也就是說,結合背景定位的控制能夠在網頁上的某處單獨顯示一幅背景圖片
說明:參數取值範圍:
·inherit 繼承
·no-repeat 不重複平鋪背景圖片
·repeat
·repeat-x 使圖片只在水平方向上平鋪
·repeat-y 使圖片只在垂直方向上平鋪
注意:若是不指定背景圖片重複屬性,瀏覽器默認的是背景圖片向水平、垂直兩個方向上平鋪。
4.背景固定:background-attachment
語法:{background-attachment:fixed|scroll}
說明:參數取值範圍
·fixed:網頁滾動時,背景圖片相對於瀏覽器的窗口而言,固定不動
·scroll:網頁滾動時,背景圖片相對於瀏覽器的窗口而言,一塊兒滾動
注意:背景圖片固定控制背景圖片是否隨網頁的滾動而滾動。若是不設置背景圖片固定屬性,瀏覽器默認背景圖片隨網頁的滾動而滾動。爲了不過於花哨的背景圖片在滾動時傷害瀏覽者的視力,因此能夠解除背景圖片和文字內容的捆綁,該爲和瀏覽器窗口捆綁。
例子:使背景圖案不隨文字「滾動」的css
body { background: purple url(bg.jpg); background-repeat:repeat-y; background-attachment:fixed }
5.背景定位:background-position
語法:{background-position:數值|top|bottom|left|right|center}
做用:背景定位用於控制背景圖片在網頁中顯示的位置。
說明:參數取值範圍
·帶長度單位的數字參數
·top:相對前景對象頂對齊
·bottom:相對前景對象底對齊
·left:相對前景對象左對齊
·right:相對前景對象右對齊
·center:相對前景對象中心對齊
·比例關係
關鍵字解釋以下:
top left = left top = 0% 0%
top = top center = center top = 50% 0%
right top = top right = 100% 0%
left = left center = center left = 0% 50%
center = center center = 50% 50%
right = right center = center right = 100% 50%
bottom left = left bottom = 0% 100%
bottom = bottom center = center bottom = 50% 100%
bottom right = right bottom = 100% 100%
注意:參數中的center若是用於另一個參數的前面,表示水平居中;若是用於另一個參數的後面,表示垂直居中。
6. 背景樣式:background
語法:{background:背景顏色|背景圖象|背景重複|背景附件|背景位置}
做用:背景屬性是一個更明確的背景—關係屬性的略寫。如下是一些背景的聲明:
例子:
body { background: white url(http://www.htmlhelp.com/foo.gif) }
blockquote { background: #7fffd4 }
p { background: url(../backgrounds/pawn.png) #f0f8ff fixed }
table { background: #0c0 url(leaves.jpg) no-repeat bottom right }
注意:當一個值未被指定時,將接受其初始值。例如,在上述的前三條規則,背景位置屬性將被設置爲0% 0%。爲了不與用戶的樣式表之間的衝突,背景和顏色應該一塊兒被指定。