CSS可以通過background屬性來設置元素的背景圖片,并且可以使背景圖片充滿整個元素。
background: url(圖片地址) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;
這里的url()中填寫圖片的地址,no-repeat表示圖片不重復,center center表示圖片水平和垂直居中,fixed表示圖片不隨著頁面滾動而滾動。
同時,-webkit-background-size、-moz-background-size、-o-background-size和background-size用于設置圖片的大小,由于不同瀏覽器對CSS3的支持不同,因此需要添加多個前綴。
通過這樣的設置,背景圖片就可以充滿整個元素了。