css設定圖片背景的方法:1、使用background-image屬性,語法「background-image:url('圖片位址');」;2、使用background屬性,語法「background:url('圖片地址');」。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
在css中,可以使用background-image屬性或background屬性來設定圖片背景。
css background-image屬性
background-image 屬性設定一個元素的背景圖片。
元素的背景是元素的總大小,包括填充和邊界(但不包括邊距)。
預設情況下,background-image放置在元素的左上角,並重複垂直和水平方向。
屬性值:
url('URL') 指向影像的路徑。
none 預設值。不顯示背景影像。
inherit 規定應該從父元素繼承 background-image 屬性的設定。
範例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css设置背景图片</title> <style> body { background-image: url('img/1.jpg'); } </style> </head> <body> </body> </html>
效果圖:
css background屬性
#background屬性是專門設定背景的屬性,它是一個簡寫屬性,可以在一個宣告中設定所有的背景屬性。 (學習影片分享:css影片教學)
background可以設定的屬性:
background-color: 規定要使用的背景顏色。
background-position: 規定背景影像的位置。
background-size: 規定背景圖片的尺寸。
background-repeat :規定如何重複背景圖像。
background-origin :規定背景圖片的定位區域。
background-clip: 規定背景的繪製區域。
background-attachment: 規定背景圖像是否固定或隨著頁面的其餘部分滾動。
background-image :規定要使用的背景圖片。
可以看出background-image屬性就是給html頁面設定背景圖片的屬性,下面看看它的用法
background-image:url(1.jpg);
這樣在url()裡給出圖片的路徑,就可以為div盒子設定背景圖片;看似簡單,但有一點要注意,設定背景圖片的盒子必須要有實質的寬度與高度,這樣才可以讓背景圖片在顯示器上顯示。
上面的這些background屬性如果一個一個的設定是不是感到繁瑣,其實有些屬性是可以放在一起設定的,這樣的css背景表達可以節約且優化了css檔案程式碼。範例:
background:url(bgimg.gif) no-repeat 5px 5px;
如下圖解釋:
範例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>背景图片设置</title> <style> .demo{ position:fixed; top: 0; left: 0; width:100%; height:100%; min-width: 1000px; z-index:-10; zoom: 1; background-color: #fff; background: url(img/1.jpg); background-repeat: no-repeat; background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-position: center 0; } </style> </head> <body> <div class="demo"></div> </body> </html>
效果圖:
以上是css怎麼設定圖片背景的詳細內容。更多資訊請關注PHP中文網其他相關文章!